MCPcopy Create free account
hub / github.com/RangeNetworks/openbts / ChannelState2Text

Method ChannelState2Text

Control/L3LogicalChannel.cpp:367–381  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

365}
366
367const char *L3LogicalChannel::ChannelState2Text(ChannelState chstate)
368{
369 switch (chstate) {
370 case L3LogicalChannel::chIdle: return "Idle";
371 case L3LogicalChannel::chEstablished: return "Established";
372 //case L3LogicalChannel::chReleased: return "Released";
373 case L3LogicalChannel::chRequestRelease: return "RequestRelease";
374 case L3LogicalChannel::chRequestHardRelease: return "RequestHardRelease";
375 case L3LogicalChannel::chReassignTarget: return "ReassignTarget";
376 //case L3LogicalChannel::chReassignPending: return "ReassignPending";
377 //case L3LogicalChannel::chReassignComplete: return "ReassignmentComplete";
378 //case L3LogicalChannel::chReassignFailure: return "ReassignmentFailure";
379 }
380 return "(chstate undefined)";
381}
382
383// Info about just this L3LogicalChannel
384std::ostream& L3LogicalChannel::chanText(ostream& os) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected