smalltalk
/
osmo-st-sip
Archived
1
0
Fork 0

callagent: Make the Datagram buffer big enough for data

This commit is contained in:
Holger Hans Peter Freyther 2011-06-13 19:15:28 +02:00
parent 99d39be944
commit 1fab601303
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ SIPTransport subclass: SIPUdpTransport [
initialize: anAddress [
sem := Semaphore forMutualExclusion.
socket := Sockets.DatagramSocket local: anAddress port: 5060.
socket addToBeFinalized.
socket
bufferSize: 2048;
addToBeFinalized.
]
start [