| 50 | |
| 51 | |
| 52 | void L3LocationAreaIdentity::writeV(L3Frame& dest, size_t &wp) const |
| 53 | { |
| 54 | dest.writeField(wp,mMCC[1],4); |
| 55 | dest.writeField(wp,mMCC[0],4); |
| 56 | dest.writeField(wp,mMNC[2],4); |
| 57 | dest.writeField(wp,mMCC[2],4); |
| 58 | dest.writeField(wp,mMNC[1],4); |
| 59 | dest.writeField(wp,mMNC[0],4); |
| 60 | dest.writeField(wp,mLAC,16); |
| 61 | } |
| 62 | |
| 63 | void L3LocationAreaIdentity::parseV( const L3Frame& src, size_t &rp ) |
| 64 | { |
nothing calls this directly
no test coverage detected