Fix SCons 1.2.0 build failure
[senf.git] / senf / Packets / DefaultBundle / EthernetPacket.cc
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 //     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 EthernetPacket non-inline non-template implementation */
25
26 #include "EthernetPacket.hh"
27 //#include "EthernetPacket.ih"
28
29 // Custom includes
30 #include "LlcSnapPacket.hh"
31 #include <iomanip>
32 #include <boost/io/ios_state.hpp>
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 namespace {
38     senf::PacketRegistry<senf::EtherTypes>::RegistrationProxy<senf::EthVLanPacket>
39         registerEthVLanPacket(0x8100);
40 }
41
42 ///////////////////////////////////////////////////////////////////////////
43 // senf::EthernetPacketType
44
45 prefix_ void senf::EthernetPacketType::dump(packet p, std::ostream & os)
46 {
47     boost::io::ios_all_saver ias(os);
48     if (p->type_length() <= 1500)
49         os << "Ethernet 802.3";
50     else if (p->type_length() >= 0x600)
51         os << "Ethernet II (DIX)";
52     else
53         os << "Ethernet 802.3 (bad ethertype >1500 and <1536)";
54     os <<     ": \n"
55        <<     "  destination             : " << p->destination() << "\n"
56        <<     "  source                  : " << p->source() << "\n"
57        <<     "  type/length             : 0x" 
58        <<     std::hex << std::setw(4) << std::setfill('0') << p->type_length() << "\n";
59 }
60
61 prefix_ senf::PacketInterpreterBase::factory_t senf::EthernetPacketType::nextPacketType(packet p)
62 {
63     if      (p->type_length() >= 1536) return lookup(p->type_length());
64     else if (p->type_length() <= 1500) return LlcSnapPacket::factory();
65     else                               return no_factory();
66 }
67
68 prefix_ void senf::EthernetPacketType::finalize(packet p)
69 {
70     Packet n (p.next(nothrow));
71     if (n) {
72         optional_key_t k (key(n));
73         if (k)
74             p->type_length() << k;
75         else if (n.is<LlcSnapPacket>())
76             p->type_length() << n.data().size();
77     }
78     // Do NOT reset type_length if the type is not known ... doing this will destroy read packets
79 }
80
81 prefix_ void senf::EthVLanPacketType::dump(packet p, std::ostream & os)
82 {
83     boost::io::ios_all_saver ias(os);
84     os <<     "Ethernet 802.1q (VLAN):\n"
85        <<     "  priority                : " << p->priority() << "\n"
86        <<     "  cfi                     : " << p->cfi() << "\n"
87        <<     "  vlan-ID                 : " << p->vlanId() << "\n"
88        <<     "  ethertype               : 0x" 
89        <<     std::hex << std::setw(4) << std::setfill('0') << p->type() << "\n";
90 }
91
92 prefix_ void senf::EthVLanPacketType::finalize(packet p)
93 {
94     p->type() << key(p.next(nothrow));
95 }
96
97
98 ///////////////////////////////cc.e////////////////////////////////////////
99 #undef prefix_
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u test"
109 // comment-column: 40
110 // End: