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

Method writeV

GSM/GSML3CCElements.cpp:31–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29
30
31void L3BearerCapability::writeV( L3Frame &dest, size_t &wp ) const
32{
33 // See GSM 10.5.4.5.
34 // This is a hell of a complex element, inherited from ISDN.
35 // But we're going to ignore a lot of it.
36
37 // "octet 3"
38 dest.writeField(wp, mOctet3, 8);
39
40 // zero or more "octet 3a"
41 for (unsigned i = 0; i < mNumOctet3a; i++) {
42 dest.writeField(wp,mOctet3a[i],8);
43 }
44}
45
46
47void L3BearerCapability::parseV( const L3Frame& src, size_t &rp, size_t expectedLength )

Callers

nothing calls this directly

Calls 2

writeFieldMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected