ba2f3896035e6e7a7dee252ba6be804e10090ea5
[senf.git] / Packets / 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::IpV6Packet::v_nextInterpreter()
47     const
48 {
49     registerInterpreter(nextHeader(),begin()+bytes(),end());
50 }
51
52 prefix_ void senf::IpV6Packet::v_finalize()
53 {}
54
55 prefix_ void senf::IpV6Packet::v_dump(std::ostream & os)
56     const
57 {
58     os << "Internet protocol Version 6:\n"
59        << "  version       : " << unsigned(version()) << "\n"
60        << "  traffic class : " << std::hex << unsigned(trafficClass()) << "\n"
61        << "  flow label    : " << std::hex << unsigned(flowLabel()) << "\n"
62        << "  length        : " << std::dec << unsigned(length()) << "\n"
63        << "  next header   : " << unsigned(nextHeader()) << "\n"
64        << "  hop limit     : " << unsigned(hopLimit()) << "\n"
65        << "  source        : " << INet6Address(source().range()) << "\n"
66        << "  destination   : " << INet6Address(destination().range()) << "\n";
67 }
68
69 ///////////////////////////////cc.e////////////////////////////////////////
70 #undef prefix_
71 //#include "IpV6Packet.mpp"
72
73 \f
74 // Local Variables:
75 // mode: c++
76 // fill-column: 100
77 // c-file-style: "senf"
78 // ispell-local-dictionary: "american"
79 // End: