some clean-ups
[senf.git] / Packets / 80211Bundle / WLANPacket.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
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 // Definition of non-inline non-template functions
24
25 // Custom includes
26 #include "WLANPacket.hh"
27 #include "../../Packets/Packets.hh"
28 #include "../DefaultBundle/LlcSnapPacket.hh"
29 #include <boost/io/ios_state.hpp>
30
31 #define prefix_
32
33 prefix_ senf::MACAddressParser senf::WLANPacket_DataFrameParser::da()
34     const
35 {
36     switch (dsBits())
37     {
38     case 0 :
39     case 2 :
40         return addr1();
41         break;
42     case 1 :
43     case 3 :
44         return addr3();
45         break;
46     }
47     //just to avoid compiler warning
48     //TODO
49     return addr1();
50 }
51
52 prefix_ senf::MACAddressParser senf::WLANPacket_DataFrameParser::sa()
53     const
54 {
55     switch (dsBits())
56     {
57     case 0 :
58     case 1 :
59         return addr2();
60         break;
61     case 2 :
62         return addr3();
63         break;
64 //TODO wds frames
65 //    case 3:
66 //        return addr4();
67     }
68     //just to avoid compiler warning
69     //TODO
70     return addr1();
71 }
72
73 prefix_ senf::MACAddressParser senf::WLANPacket_DataFrameParser::bssid()
74     const
75 {
76     switch (dsBits())
77     {
78     case 0 :
79         return addr3();
80         break;
81     case 1 :
82         return addr1();
83         break;
84     case 2:
85         return addr2();
86     }
87     //just to avoid compiler warning
88     //TODO
89     return addr1();
90 }
91
92 //shift some bits to read the 12bit sequence number bit field in LSB byte order
93 prefix_ boost::uint16_t senf::WLANPacket_MgtFrameParser::sequenceNumber()
94     const
95 {
96     boost::uint16_t seqN = 0;
97     seqN |= seqNumber_2();
98     seqN <<= 4;
99     seqN |= seqNumber_1();
100     return seqN;
101 }
102
103 //shift some bits to read the 12bit sequence number bit field in LSB byte order
104 prefix_ boost::uint16_t senf::WLANPacket_DataFrameParser::sequenceNumber()
105     const
106 {
107     boost::uint16_t seqN = 0;
108     seqN |= seqNumber_2();
109     seqN <<= 4;
110     seqN |= seqNumber_1();
111     return seqN;
112 }
113
114 prefix_ void senf::WLANPacketType::dump(packet p, std::ostream &os)
115 {
116     boost::io::ios_all_saver ias(os);
117     os  << "802.11 MAC Frame:\n"
118         << "  Type              : " << unsigned (p->type()) << "\n"
119         << "  Subtype           : " << unsigned (p->subtype()) << "\n"
120         << "  Retransmission    : " << unsigned (p->retry()) << "\n"
121         << "  Duration          : " << unsigned (p->duration()) << "\n";
122
123     if (p->has_mgtFrame())
124     {
125         os << "  BSSID               : " << p->mgtFrame().bssid() << "\n";
126         os << "  Destination Address : " << p->mgtFrame().destinationAddress() << "\n";
127         os << "  Source Address      : " << p->mgtFrame().sourceAddress() << "\n";
128     }
129
130 };
131
132
133
134
135 #undef prefix_