b88987bc828189ac2b08a4033a5bbd48cdb11ed0
[senf.git] / Packets / DefaultBundle / IpV4Packet.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief IpV4Packet non-inline non-template implementation */
25
26 #include "IpV4Packet.hh"
27 //#include "IpV4Packet.ih"
28
29 // Custom includes
30 #include <sys/socket.h>
31 #include <netinet/in.h>
32 #include <arpa/inet.h>
33 #include "EthernetPacket.hh"
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 namespace {
39     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::IpV4Packet>
40         registerIpV4Packet (0x0800);
41
42     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::IpV4Packet>
43         regsiterIpV4Packet2 (4); // IP-in-IP encapsulation
44 }
45
46 prefix_ void senf::IpV4PacketType::dump(packet p, std::ostream & os)
47 {
48     os << "Internet protocol Version 4:\n"
49        << "  version       : " << p->version() << "\n"
50        << "  IHL           : " << p->ihl() << "\n"
51        << "  TOS           : " << unsigned(p->tos()) << "\n"
52        << "  length        : " << p->length() << "\n"
53        << "  identifier    : " << p->identifier() << "\n"
54        << "  DF            : " << p->df() << "\n"
55        << "  MF            : " << p->mf() << "\n"
56        << "  fragment      : " << p->frag() << "\n"
57        << "  TTL           : " << unsigned(p->ttl()) << "\n"
58        << "  protocol      : " << unsigned(p->protocol()) << "\n"
59        << "  CRC           : " << std::hex << p->crc() << std::dec << "\n"
60        << "  source        : " << p->source() << "\n"
61        << "  destination   : " << p->destination() << "\n";
62 }
63
64 ///////////////////////////////cc.e////////////////////////////////////////
65 #undef prefix_
66
67 \f
68 // Local Variables:
69 // mode: c++
70 // fill-column: 100
71 // c-file-style: "senf"
72 // indent-tabs-mode: nil
73 // ispell-local-dictionary: "american"
74 // compile-command: "scons -u test"
75 // comment-column: 40
76 // End: