| 45 | _msg_buff = NULL; |
| 46 | } |
| 47 | IMtConnection::~IMtConnection() |
| 48 | { |
| 49 | if (_ntfy_obj) { |
| 50 | NtfyObjMgr::Instance()->FreeNtfyObj(_ntfy_obj); |
| 51 | _ntfy_obj = NULL; |
| 52 | } |
| 53 | |
| 54 | if (_msg_buff) { |
| 55 | MsgBuffPool::Instance()->FreeMsgBuf(_msg_buff); |
| 56 | _msg_buff = NULL; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void IMtConnection::Reset() |
| 61 | { |
nothing calls this directly
no test coverage detected