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

process: Name all processes started by osmo-sip

This commit is contained in:
Holger Hans Peter Freyther 2012-08-08 18:08:33 +02:00
parent 62e17b57ab
commit 895ca4fd4a
1 changed files with 3 additions and 0 deletions

View File

@ -155,6 +155,7 @@ SIPTransport subclass: SIPUdpTransport [
start [
"Receive datagrams from the socket..."
rx := [
Process activeProcess name: 'SIPTransport RX'.
[ | data |
data := socket next.
data ifNotNil: [
@ -165,6 +166,8 @@ SIPTransport subclass: SIPUdpTransport [
"Send data to the MGWs"
tx := [
Process activeProcess name: 'SIPTransport TX'.
[ | data |
data := queue next.
socket nextPut: data.