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

Method skipExtendedOctets

GSM/GSML3Message.cpp:277–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275
276
277void L3ProtocolElement::skipExtendedOctets( const L3Frame& source, size_t &rp )
278{
279 if (rp==source.size()) return;
280 int endbit = 0;
281 while(!endbit){
282 endbit = source.readField(rp, 1);
283 rp += 7;
284 }
285}
286
287void L3OctetAlignedProtocolElement::writeV(L3Frame&dest, size_t&wp) const {
288 const unsigned char *data = peData();

Callers

nothing calls this directly

Calls 2

readFieldMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected