missing commit for last rev.
[senf.git] / Packets / DefaultBundle / LlcSnapPacket.cc
index 4442463..ae14712 100644 (file)
 prefix_ void senf::LlcSnapPacketType::dump(packet p, std::ostream & os)
 {
     boost::io::ios_all_saver ias(os);
-    os << "LLC/SNAP\n"
+    os << "LLC/SNAP:\n"
        << std::hex << std::setfill('0')
-       << "  LLC\n"
-       << "    DSAP: 0x" << unsigned(p->dsap()) << "\n"
-       << "    SSAP: 0x" << unsigned(p->ssap()) << "\n"
-       << "    controlId: 0x" << unsigned(p->ctrl()) << "\n"
-       << "  SNAP\n"       
-       << "    ProtocolId: 0x" << std::setw(6) << unsigned(p->protocolId()) << "\n"
-       << "    type_length: 0x" << std::setw(4) << unsigned(p->type_length()) << "\n";
+       <<     "  LLC\n"
+       <<     "    dsap                  : 0x" << unsigned(p->dsap()) << "\n"
+       <<     "    ssap                  : 0x" << unsigned(p->ssap()) << "\n"
+       <<     "    control id            : 0x" << unsigned(p->ctrl()) << "\n"
+       <<     "  SNAP\n"       
+       <<     "    protocol id           : 0x" << std::setw(6) << unsigned(p->protocolId()) << "\n"
+       <<     "    type/length           : 0x" << std::setw(4) << unsigned(p->type_length()) << "\n";
 }
 
 prefix_ senf::PacketInterpreterBase::factory_t senf::LlcSnapPacketType::nextPacketType(packet p)