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

Method parseL3RR

GSM/GSML3RRMessages.cpp:178–188  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178L3RRMessage* GSM::parseL3RR(const L3Frame& source)
179{
180 L3RRMessage::MessageType MTI = (L3RRMessage::MessageType)source.MTI();
181 LOG(DEBUG) << "parseL3RR MTI="<<MTI;
182
183 L3RRMessage *retVal = L3RRFactory(MTI);
184 if (retVal==NULL) return NULL;
185
186 retVal->parse(source);
187 return retVal;
188}
189
190
191

Callers

nothing calls this directly

Calls 2

MTIMethod · 0.45
parseMethod · 0.45

Tested by

no test coverage detected