Move include files in debian packge into 'senf' subdirectory
[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 <boost/io/ios_state.hpp>
29 #include "EthernetPacket.hh"
30 #include "../../Socket/Protocols/INet/INetAddressing.hh"
31
32 //#include "IpV6Packet.mpp"
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 namespace {
37     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::IpV6Packet>
38         registerIpV6Packet (0x86dd);
39
40     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::IpV6Packet>
41         registerIpV6Packet2 (41); // IP6-in-IP(6) encapsulation
42
43     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::DataPacket>
44         registerNoNextHeader (59);
45 }
46
47 prefix_ void senf::IpV6PacketType::dump(packet p, std::ostream & os)
48 {
49     boost::io::ios_all_saver ias(os);
50     os << "Internet protocol Version 6:\n"
51        << "  version       : " << unsigned(p->version()) << "\n"
52        << "  traffic class : " << std::hex << unsigned(p->trafficClass()) << "\n"
53        << "  flow label    : " << std::hex << unsigned(p->flowLabel()) << "\n"
54        << "  length        : " << std::dec << unsigned(p->length()) << "\n"
55        << "  next header   : " << unsigned(p->nextHeader()) << "\n"
56        << "  hop limit     : " << unsigned(p->hopLimit()) << "\n"
57        << "  source        : " << p->source() << "\n"
58        << "  destination   : " << p->destination() << "\n";
59 }
60
61 ///////////////////////////////cc.e////////////////////////////////////////
62 #undef prefix_
63 //#include "IpV6Packet.mpp"
64
65 \f
66 // Local Variables:
67 // mode: c++
68 // fill-column: 100
69 // c-file-style: "senf"
70 // indent-tabs-mode: nil
71 // ispell-local-dictionary: "american"
72 // compile-command: "scons -u test"
73 // comment-column: 40
74 // End: