| 46 | } |
| 47 | |
| 48 | void L3LogicalChannel::L3LogicalChannelInit() |
| 49 | { |
| 50 | // We must NOT reset mNextChan,mPrevChan as part of the LogicalChannelReset because these must |
| 51 | // survive the establishment and release of channels during the reassignment procedure. |
| 52 | // We dont use them for anything else, so it is ok to end with them set. |
| 53 | mNextChan = NULL; |
| 54 | //mPrevChan = NULL; |
| 55 | mChState = chIdle; |
| 56 | mChContext = NULL; |
| 57 | L3LogicalChannelReset(); |
| 58 | } |
| 59 | |
| 60 | L3LogicalChannel::~L3LogicalChannel() |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected