| 101 | } |
| 102 | |
| 103 | void L3BearerCapability::text(ostream& os) const |
| 104 | { |
| 105 | os << LOGHEX2("octet3",mOctet3); |
| 106 | for (unsigned i = 0; i < mNumOctet3a; i++) { |
| 107 | os<<LOGHEX2("octet3a",mOctet3a[i]) << "(" <<CodecType2Name(getCodecType(i)) << ")"; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | void L3SupportedCodecList::writeV( L3Frame& dest, size_t &wp ) const |
| 112 | { |
nothing calls this directly
no test coverage detected