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

misc: Remove duplication of strings and go through the request class

This commit is contained in:
Holger Hans Peter Freyther 2014-02-25 10:55:49 +01:00
parent 32cba85ab4
commit 58f8c6e4f8
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ SIPTransaction subclass: SIPByeTransaction [
<category: 'OsmoSIP-Callagent'>
SIPByeTransaction class >> operationName [
^'BYE'
^SIPByeRequest verb
]
transmit [

View File

@ -23,7 +23,7 @@ SIPTransaction subclass: SIPInviteTransaction [
<comment: 'RFC3161 17.2.1'>
SIPInviteTransaction class >> operationName [
^'INVITE'
^SIPInviteRequest verb
]
SIPInviteTransaction class >> createWith: aDialog on: aUA with: aSDP cseq: aCseq[