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

mgcp: Fix the name of the AUEP command

This commit is contained in:
Holger Hans Peter Freyther 2014-05-29 21:32:53 +02:00
parent f0549c2df8
commit da6b556696
1 changed files with 3 additions and 3 deletions

View File

@ -192,16 +192,16 @@ MGCPCommandBase subclass: MGCPDLCXCommand [
]
]
MGCPCommandBase subclass: MGCPAUEPComamnd [
MGCPCommandBase subclass: MGCPAUEPCommand [
<comment: 'I represent an AUEP message'>
<category: 'OsmoMGCP-Callagent'>
MGCPAUEPComamnd class >> verb [
MGCPAUEPCommand class >> verb [
<category: 'verb'>
^ 'AUEP'
]
MGCPAUEPComamnd class >> createAUEP: anEndpoint [
MGCPAUEPCommand class >> createAUEP: anEndpoint [
^ (self create: anEndpoint)
yourself
]