| 156 | |
| 157 | #if UNUSED |
| 158 | MachineStatus ProcedureDetach::machineRunState(int state, const GSM::L3Message* l3msg, const SIP::DialogMessage *sipmsg) |
| 159 | { |
| 160 | PROCLOG2(DEBUG,state)<<LOGVAR(l3msg)<<LOGVAR(sipmsg)<<LOGVAR2("imsi",tran()->subscriber()); |
| 161 | getDialog()->dialogCancel(); // reudundant, chanLost would do it. Does nothing if dialog not yet started. |
| 162 | setGSMState(CCState::NullState); // redundant, we are deleting this transaction. |
| 163 | channel()->l3sendm(L3ChannelRelease()); |
| 164 | channel()->chanRelease(HARDRELEASE); |
| 165 | //channel()->l3sendp(HARDRELEASE); |
| 166 | //channel()->chanLost(); |
| 167 | return MachineStatusOK; |
| 168 | } |
| 169 | #endif |
| 170 | |
| 171 | // Identical to teCloseCallNow. |
nothing calls this directly
no test coverage detected