Merged revisions 262,264-265,267-282,284-298,300-311 via svnmerge from
[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 // Definition of non-inline non-template functions
24
25 #include "IpV4Packet.hh"
26 //#include "IpV4Packet.ih"
27
28 // Custom includes
29 #include <sys/socket.h>
30 #include <netinet/in.h>
31 #include <arpa/inet.h>
32 #include "EthernetPacket.hh"
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 namespace {
38     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::IpV4PacketType>
39         registerIpV4Packet (0x0800);
40
41     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::IpV4PacketType>
42         regsiterIpV4Packet2 (4); // IP-in-IP encapsulation
43 }
44
45 prefix_ void senf::IpV4PacketType::dump(packet p, std::ostream & os)
46 {
47     struct in_addr in;
48     in.s_addr = htonl(p->source());
49     char buffer[128];
50     std::string src (inet_ntop(AF_INET,&in,buffer,128));
51     in.s_addr = htonl(p->destination());
52     std::string dst (inet_ntop(AF_INET,&in,buffer,128));
53     os << "Internet protocol Version 4:\n"
54        << "  version       : " << p->version() << "\n"
55        << "  IHL           : " << p->ihl() << "\n"
56        << "  TOS           : " << unsigned(p->tos()) << "\n"
57        << "  length        : " << p->length() << "\n"
58        << "  identifier    : " << p->identifier() << "\n"
59        << "  DF            : " << p->df() << "\n"
60        << "  MF            : " << p->mf() << "\n"
61        << "  fragment      : " << p->frag() << "\n"
62        << "  TTL           : " << unsigned(p->ttl()) << "\n"
63        << "  protocol      : " << unsigned(p->protocol()) << "\n"
64        << "  CRC           : " << std::hex << p->crc() << std::dec << "\n"
65        << "  source        : " << src << "\n"
66        << "  destination   : " << dst << "\n";
67 }
68
69 ///////////////////////////////cc.e////////////////////////////////////////
70 #undef prefix_
71
72 \f
73 // Local Variables:
74 // mode: c++
75 // fill-column: 100
76 // c-file-style: "senf"
77 // indent-tabs-mode: nil
78 // ispell-local-dictionary: "american"
79 // compile-command: "scons -u test"
80 // comment-column: 40
81 // End: