| 92 | string smGetMessageBody() const; |
| 93 | string smGetMessageContentType() const; |
| 94 | string smGetProxy() const { |
| 95 | string topvia = commaListFront(msmVias); |
| 96 | if (topvia.empty()) { return string(""); } // oops |
| 97 | SipVia via(topvia); |
| 98 | return via.mSentBy; |
| 99 | } |
| 100 | const char *smGetMethodName() const { return msmReqMethod.c_str(); } |
| 101 | const char *smGetReason() const { return msmReason.c_str(); } |
| 102 | string smGetRand401(); |
no test coverage detected