X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Packets%2FDefaultBundle%2FIpV4Packet.cc;h=42413793b705f0f4112b843ed8b1571d68310945;hb=a4e052fb8832499ef5e3ae4e563ea01b834010c2;hp=6b163a6d55262164213cadd12c7b17ffc57761ba;hpb=8421c3a8da7485cb8781045494ecaab3ed84f403;p=senf.git diff --git a/Packets/DefaultBundle/IpV4Packet.cc b/Packets/DefaultBundle/IpV4Packet.cc index 6b163a6..4241379 100644 --- a/Packets/DefaultBundle/IpV4Packet.cc +++ b/Packets/DefaultBundle/IpV4Packet.cc @@ -24,12 +24,12 @@ #include "IpV4Packet.hh" //#include "IpV4Packet.ih" -#include "EthernetPacket.hh" // Custom includes #include #include #include +#include "EthernetPacket.hh" #define prefix_ ///////////////////////////////cc.p//////////////////////////////////////// @@ -42,36 +42,26 @@ namespace { regsiterIpV4Packet2 (4); // IP-in-IP encapsulation } -prefix_ void senf::IpV4Packet::v_nextInterpreter() - const -{ - registerInterpreter(protocol(),begin()+bytes(),end()); -} - -prefix_ void senf::IpV4Packet::v_finalize() -{} - -prefix_ void senf::IpV4Packet::v_dump(std::ostream & os) - const +prefix_ void senf::IpV4PacketType::dump(packet p, std::ostream & os) { struct in_addr in; - in.s_addr = htonl(source()); + in.s_addr = htonl(p->source()); char buffer[128]; std::string src (inet_ntop(AF_INET,&in,buffer,128)); - in.s_addr = htonl(destination()); + in.s_addr = htonl(p->destination()); std::string dst (inet_ntop(AF_INET,&in,buffer,128)); os << "Internet protocol Version 4:\n" - << " version : " << version() << "\n" - << " IHL : " << ihl() << "\n" - << " TOS : " << unsigned(tos()) << "\n" - << " length : " << length() << "\n" - << " identifier : " << identifier() << "\n" - << " DF : " << df() << "\n" - << " MF : " << mf() << "\n" - << " fragment : " << frag() << "\n" - << " TTL : " << unsigned(ttl()) << "\n" - << " protocol : " << unsigned(protocol()) << "\n" - << " CRC : " << std::hex << crc() << std::dec << "\n" + << " version : " << p->version() << "\n" + << " IHL : " << p->ihl() << "\n" + << " TOS : " << unsigned(p->tos()) << "\n" + << " length : " << p->length() << "\n" + << " identifier : " << p->identifier() << "\n" + << " DF : " << p->df() << "\n" + << " MF : " << p->mf() << "\n" + << " fragment : " << p->frag() << "\n" + << " TTL : " << unsigned(p->ttl()) << "\n" + << " protocol : " << unsigned(p->protocol()) << "\n" + << " CRC : " << std::hex << p->crc() << std::dec << "\n" << " source : " << src << "\n" << " destination : " << dst << "\n"; } @@ -86,4 +76,6 @@ prefix_ void senf::IpV4Packet::v_dump(std::ostream & os) // c-file-style: "senf" // indent-tabs-mode: nil // ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: