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

callagent: Respond with a failure to OPTIONS requests

There is no proper implementation yet, also no way for an application
to tweak that behavior but there is also no need for that right now.
This commit is contained in:
Holger Hans Peter Freyther 2012-08-06 01:26:03 +02:00
parent 55765c9f0d
commit 1f4723a902
1 changed files with 11 additions and 0 deletions

View File

@ -37,6 +37,17 @@ SIPByeRequest extend [
]
]
SIPOptionsRequest extend [
sipDispatchNewDialog: aDialog on: aUserAgent [
<category: 'OsmoSIP-Callagent'>
aUserAgent
respondWith: 481
phrase: 'Call Leg/Transaction Does Not Exist'
on: self
dialog: aDialog.
]
]
Object subclass: SIPTransport [
| queue handler |
<category: 'OsmoSIP-Callagent'>