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

call: End the session at any hangup result

E.g. the hangup could have failed due the other side already
having hung up but at some point we need to stop caring about
it.
This commit is contained in:
Holger Hans Peter Freyther 2014-06-05 17:24:39 +02:00
parent a28c2ab64c
commit 29242f86a1
1 changed files with 3 additions and 0 deletions

View File

@ -75,6 +75,7 @@ sessions (calls). The common code goes here'>
<category: 'hangup-result'>
self logNotice: ('SIPCallBase(<1s>) hang-up timedout.'
expandMacrosWith: self callId) area: #sip.
self sessionEnd.
]
hangupSuccess: aResponse dialog: aDialog [
@ -87,6 +88,7 @@ sessions (calls). The common code goes here'>
self logNotice: ('SIPCallBase(<1s>) hang-up success.'
expandMacrosWith: self callId) area: #sip.
self sessionEnd.
]
hangupFailure: aResponse dialog: aDialog [
@ -99,6 +101,7 @@ sessions (calls). The common code goes here'>
self logNotice: ('SIPCallBase(<1s>) hang-up failure.'
expandMacrosWith: self callId) area: #sip.
self sessionEnd.
]
remoteHangup: aRequest dialog: aDialog [