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

Method parseL3MM

GSM/GSML3MMMessages.cpp:105–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103}
104
105L3MMMessage * GSM::parseL3MM(const L3Frame& source)
106{
107 L3MMMessage::MessageType MTI = (L3MMMessage::MessageType)(0xbf & source.MTI());
108 LOG(DEBUG) << "parseL3MM MTI=" << MTI;
109
110 L3MMMessage *retVal = L3MMFactory(MTI);
111 if (retVal==NULL) return NULL;
112
113 retVal->parse(source);
114 return retVal;
115}
116
117
118

Callers

nothing calls this directly

Calls 2

MTIMethod · 0.45
parseMethod · 0.45

Tested by

no test coverage detected