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

transport: Add the socket to the list of finalizers

This will close the socket when the transport is recycled
This commit is contained in:
Holger Hans Peter Freyther 2011-06-13 16:27:32 +02:00
parent b0ef812e6c
commit 93f0b5fd70
1 changed files with 1 additions and 0 deletions

View File

@ -95,6 +95,7 @@ SIPTransport subclass: SIPUdpTransport [
initialize: anAddress [
sem := Semaphore forMutualExclusion.
socket := Sockets.DatagramSocket local: anAddress port: 5060.
socket addToBeFinalized.
]
start [