| 285 | } |
| 286 | |
| 287 | void L3OctetAlignedProtocolElement::writeV(L3Frame&dest, size_t&wp) const { |
| 288 | const unsigned char *data = peData(); |
| 289 | for (unsigned i = mData.size(); i > 0; i--) { |
| 290 | dest.writeField(wp,*data++,8); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | // expectedLength is in BYTES! |
| 295 | void L3OctetAlignedProtocolElement::parseV(const L3Frame&src, size_t&rp, size_t expectedLength) { |
no test coverage detected