eg 200 for OK.
| 63 | //SipMethod::MethodType mMethod; // If not a method then SipMethod:Undefined. |
| 64 | unsigned mSipStatusCode; // eg 200 for OK. |
| 65 | DialogMessage(Control::TranEntryId wTranId,DialogState::msgState nextState, unsigned code) : |
| 66 | mTranId(wTranId), mMsgState(nextState), mSipStatusCode(code) {} |
| 67 | DialogState::msgState dialogState() const { return mMsgState; } |
| 68 | unsigned sipStatusCode() const { return mSipStatusCode; } |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected