| 29 | |
| 30 | |
| 31 | void 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 | |
| 47 | void L3BearerCapability::parseV( const L3Frame& src, size_t &rp, size_t expectedLength ) |
nothing calls this directly
no test coverage detected