Packets/80221Bundle: added handy SENF_MIH_PACKET_REGISTRY_REGISTER define
[senf.git] / Packets / DefaultBundle / MPLSPacket.hh
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Christian Niephaus <cni@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 MPLSPacket public header */
25
26 #ifndef HH_SENF_Packets_DefaultBundle_MPLSPacket_
27 #define HH_SENF_Packets_DefaultBundle_MPLSPacket_ 1
28
29 // Custom includes
30
31 #include "../../Packets/Packets.hh"
32
33 //#include "MPLSPacket.mpp"
34 ///////////////////////////////hh.p////////////////////////////////////////
35
36 namespace senf {
37
38     /** \brief Parse an MPLS packet
39
40         Parser implementing an MPLS header.
41
42         \image html MPLSPacket.png
43
44         \see MPLSPacketType
45      */
46     struct MPLSPacketParser : public PacketParserBase
47     {
48 #       include SENF_FIXED_PARSER()
49
50         SENF_PARSER_BITFIELD( label, 20, unsigned);
51         SENF_PARSER_BITFIELD( tc, 3, unsigned);
52         SENF_PARSER_BITFIELD_RO( s, 1, bool);
53         SENF_PARSER_FIELD( ttl, UInt8Parser);
54
55         SENF_PARSER_FINALIZE(MPLSPacketParser);
56
57         friend class MPLSPacketType;
58     };
59
60     /** \brief MPLS packet
61
62         \par Packet type (typedef):
63             \ref MPLSPacket
64
65         \par Fields:
66             \ref MPLSPacketParser
67
68
69         \ingroup protocolbundle_default
70      */
71     struct MPLSPacketType
72         : public PacketTypeBase,
73           public PacketTypeMixin<MPLSPacketType>
74     {
75 #ifndef DOXYGEN
76         typedef PacketTypeMixin<MPLSPacketType> mixin;
77 #endif
78         typedef ConcretePacket<MPLSPacketType> packet;
79         typedef MPLSPacketParser parser;
80
81         using mixin::nextPacketRange;
82         using mixin::initSize;
83         using mixin::init;
84
85         static factory_t nextPacketType(packet p);
86         /// Dump given MPLSPacket in readable form to given output stream
87         static void dump(packet p, std::ostream & os);
88         static void finalize(packet p);
89     };
90
91     /** \brief MPLS packet typedef */
92     typedef ConcretePacket<MPLSPacketType> MPLSPacket;
93
94
95 }
96
97 ///////////////////////////////hh.e////////////////////////////////////////
98 #endif
99 #ifndef SENF_PACKETS_DECL_ONLY
100 //#include "MPLSPacket.cci"
101 //#include "MPLSPacket.ct"
102 //#include "MPLSPacket.cti"
103 #endif
104
105
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // c-file-style: "senf"
110 // indent-tabs-mode: nil
111 // ispell-local-dictionary: "american"
112 // compile-command: "scons -u test"
113 // comment-column: 40
114 // End: