7a72d0fcfff5bce7656726a8626fdb17a583284b
[senf.git] / Packets / DefaultBundle / IpV6Packet.cc
1 // Copyright (C) 2007
2 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
3 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
4 //     Stefan Bund <g0dil@berlios.de>
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the
18 // Free Software Foundation, Inc.,
19 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
21 /** \file
22     \brief IpV6Packet non-inline non-template implementation */
23
24 #include "IpV6Packet.hh"
25 //#include "IpV6Packet.ih"
26
27 // Custom includes
28 #include "EthernetPacket.hh"
29 #include "Socket/INetAddressing.hh"
30
31 //#include "IpV6Packet.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 namespace {
36     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::IpV6Packet>
37         registerIpV6Packet (0x86dd);
38
39     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::IpV6Packet>
40         registerIpV6Packet2 (41); // IP6-in-IP(6) encapsulation
41
42     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::DataPacket>
43         registerNoNextHeader (59);
44 }
45
46 prefix_ void senf::IpV6PacketType::dump(packet p, std::ostream & os)
47 {
48     os << "Internet protocol Version 6:\n"
49        << "  version       : " << unsigned(p->version()) << "\n"
50        << "  traffic class : " << std::hex << unsigned(p->trafficClass()) << "\n"
51        << "  flow label    : " << std::hex << unsigned(p->flowLabel()) << "\n"
52        << "  length        : " << std::dec << unsigned(p->length()) << "\n"
53        << "  next header   : " << unsigned(p->nextHeader()) << "\n"
54        << "  hop limit     : " << unsigned(p->hopLimit()) << "\n"
55        << "  source        : " << INet6Address(p->source()) << "\n"
56        << "  destination   : " << INet6Address(p->destination()) << "\n";
57 }
58
59 ///////////////////////////////cc.e////////////////////////////////////////
60 #undef prefix_
61 //#include "IpV6Packet.mpp"
62
63 \f
64 // Local Variables:
65 // mode: c++
66 // fill-column: 100
67 // c-file-style: "senf"
68 // indent-tabs-mode: nil
69 // ispell-local-dictionary: "american"
70 // compile-command: "scons -u test"
71 // comment-column: 40
72 // End: