Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / 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
34 //#include "IPv6Packet.mpp"
35 #define prefix_
36 //-/////////////////////////////////////////////////////////////////////////////////////////////////
37
38 namespace {
39     SENF_PACKET_REGISTRY_REGISTER( senf::EtherTypes, 0x86dd, senf::IPv6Packet);
40     SENF_PACKET_REGISTRY_REGISTER( senf::IpTypes,    41,     senf::IPv6Packet); // IP6-in-IP(6) encapsulation
41 }
42
43 prefix_ void senf::IPv6PacketType::dump(packet p, std::ostream & os)
44 {
45     boost::io::ios_all_saver ias(os);
46     os << "Internet protocol Version 6:\n"
47        << senf::fieldName("version")                   << unsigned(p->version()) << "\n"
48        << senf::fieldName("traffic class")
49        << "0x" << std::hex << std::setw(2) << std::setfill('0') << unsigned(p->trafficClass()) << "\n"
50        << senf::fieldName("flow label")
51        << "0x" << std::hex << std::setw(5) << std::setfill('0') << unsigned(p->flowLabel()) << "\n"
52        << senf::fieldName("payload length")            << std::dec << unsigned(p->length()) << "\n"
53        << senf::fieldName("next header")               << unsigned(p->nextHeader()) << "\n"
54        << senf::fieldName("hop limit")                 << unsigned(p->hopLimit()) << "\n"
55        << senf::fieldName("source")                    << p->source() << "\n"
56        << senf::fieldName("destination")               << p->destination() << "\n";
57 }
58
59 prefix_ void senf::IPv6PacketType::finalize(packet p)
60 {
61     p->length() << (p.size() - IPv6PacketParser::fixed_bytes);
62     try {
63         p->nextHeader() << key(p.next());
64     }
65     catch (InvalidPacketChainException & ex) {
66         p->nextHeader() << 59; // No next header
67     }
68 }
69
70 //-/////////////////////////////////////////////////////////////////////////////////////////////////
71 #undef prefix_
72 //#include "IPv6Packet.mpp"
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // comment-column: 40
83 // End: