| 1380 | void L3GmmMsgRAUpdateComplete::textBody(std::ostream &os) const {/*nothing*/} |
| 1381 | |
| 1382 | void GMMRoutingAreaIdIE::parseElement(ByteVector &pp, size_t &rp) |
| 1383 | { |
| 1384 | mMCC[1] = pp.getNibble(rp,1); |
| 1385 | mMCC[0] = pp.getNibble(rp,0); |
| 1386 | mMNC[2] = pp.getNibble(rp+1,1); |
| 1387 | mMCC[2] = pp.getNibble(rp+1,0); |
| 1388 | mMNC[1] = pp.getNibble(rp+2,1); |
| 1389 | mMNC[0] = pp.getNibble(rp+2,0); |
| 1390 | mLAC = pp.getUInt16(rp+3); |
| 1391 | mRAC = pp.getByte(rp+5); |
| 1392 | rp += 6; |
| 1393 | } |
| 1394 | |
| 1395 | void GMMRoutingAreaIdIE::appendElement(ByteVector &msg) |
| 1396 | { |
no test coverage detected