| 680 | |
| 681 | #if UNUSED |
| 682 | void CSL3StateMachine::csl3HandleMsg(GenericL3Msg *gmsg) |
| 683 | { |
| 684 | switch (gmsg->ml3Type) { |
| 685 | case GenericL3Msg::MsgTypeLCH: |
| 686 | csl3HandleFrame(gmsg->ml3frame,gmsg->ml3ch); |
| 687 | break; |
| 688 | case GenericL3Msg::MsgTypeSIP: |
| 689 | csl3HandleSipMsg(gmsg->mSipMsg /*, gmsg->mCallId*/); |
| 690 | break; |
| 691 | default: assert(0); |
| 692 | } |
| 693 | delete gmsg; // Deletes the L3Frame in the GenericL3Msg as well. |
| 694 | } |
| 695 | #endif |
| 696 | |
| 697 | /** |
nothing calls this directly
no test coverage detected