8240f5b2c1fcfcd80dae9b25bb457d5c942a96e2
[senf.git] / Packets / DefaultBundle / IPv6Packet.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@berlios.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 IPv6Packet non-inline non-template implementation */
25
26 #include "IPv6Packet.hh"
27 //#include "IPv6Packet.ih"
28
29 // Custom includes
30 #include <iomanip>
31 #include <boost/io/ios_state.hpp>
32 #include "EthernetPacket.hh"
33 #include "../../Socket/Protocols/INet/INetAddressing.hh"
34
35 //#include "IPv6Packet.mpp"
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 namespace {
40     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::IPv6Packet>
41         registerIPv6Packet (0x86dd);
42
43     senf::PacketRegistry<senf::IpTypes>::RegistrationProxy<senf::IPv6Packet>
44         registerIPv6Packet2 (41); // IP6-in-IP(6) encapsulation
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  : 0x" 
53          << std::hex << std::setw(2) << std::setfill('0') << unsigned(p->trafficClass()) << "\n"
54        << "  flow label     : 0x" 
55          << std::hex << std::setw(5) << std::setfill('0') << unsigned(p->flowLabel()) << "\n"
56        << "  payload length : " << std::dec << unsigned(p->length()) << "\n"
57        << "  next header    : " << unsigned(p->nextHeader()) << "\n"
58        << "  hop limit      : " << unsigned(p->hopLimit()) << "\n"
59        << "  source         : " << p->source() << "\n"
60        << "  destination    : " << p->destination() << "\n";
61 }
62
63 prefix_ void senf::IPv6PacketType::finalize(packet p)
64 {
65     p->length() << (p.size() - IPv6PacketParser::fixed_bytes);
66     try {
67         p->nextHeader() << key(p.next());
68     }
69     catch (InvalidPacketChainException & ex) {
70         p->nextHeader() << 59; // No next header
71     }
72 }
73
74 ///////////////////////////////cc.e////////////////////////////////////////
75 #undef prefix_
76 //#include "IPv6Packet.mpp"
77
78 \f
79 // Local Variables:
80 // mode: c++
81 // fill-column: 100
82 // c-file-style: "senf"
83 // indent-tabs-mode: nil
84 // ispell-local-dictionary: "american"
85 // compile-command: "scons -u test"
86 // comment-column: 40
87 // End: