| 114 | bool isCANCEL() const { return !strcmp(smGetMethodName(),"CANCEL"); } |
| 115 | bool isBYE() const { return !strcmp(smGetMethodName(),"BYE"); } |
| 116 | bool isACK() const { return !strcmp(smGetMethodName(),"ACK"); } |
| 117 | // Has the message been initialized yet? We always add callid first thing, so check that. |
| 118 | bool smIsEmpty() const { return msmContent.empty() && msmCallId.empty(); } |
| 119 | }; |
no outgoing calls
no test coverage detected