aa5018c9cf967e3ca6d64e68a06208692065519a
[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     struct in_addr in;
49     in.s_addr = htonl(p->source());
50     char buffer[128];
51     std::string src (inet_ntop(AF_INET,&in,buffer,128));
52     in.s_addr = htonl(p->destination());
53     std::string dst (inet_ntop(AF_INET,&in,buffer,128));
54     os << "Internet protocol Version 4:\n"
55        << "  version       : " << p->version() << "\n"
56        << "  IHL           : " << p->ihl() << "\n"
57        << "  TOS           : " << unsigned(p->tos()) << "\n"
58        << "  length        : " << p->length() << "\n"
59        << "  identifier    : " << p->identifier() << "\n"
60        << "  DF            : " << p->df() << "\n"
61        << "  MF            : " << p->mf() << "\n"
62        << "  fragment      : " << p->frag() << "\n"
63        << "  TTL           : " << unsigned(p->ttl()) << "\n"
64        << "  protocol      : " << unsigned(p->protocol()) << "\n"
65        << "  CRC           : " << std::hex << p->crc() << std::dec << "\n"
66        << "  source        : " << src << "\n"
67        << "  destination   : " << dst << "\n";
68 }
69
70 ///////////////////////////////cc.e////////////////////////////////////////
71 #undef prefix_
72
73 \f
74 // Local Variables:
75 // mode: c++
76 // fill-column: 100
77 // c-file-style: "senf"
78 // indent-tabs-mode: nil
79 // ispell-local-dictionary: "american"
80 // compile-command: "scons -u test"
81 // comment-column: 40
82 // End: