bd47a1eee275255c3de6770284e04931552a1dd3
[senf.git] / senf / Packets / 80211Bundle / InformationElements.cc
1 // $Id$
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 InformationElements non-inline non-template implementation */
25
26 #include "InformationElements.hh"
27 //#include "InformationElements.ih"
28
29 // Custom includes
30
31 //#include "InformationElements.cc.mpp"
32 #define prefix_
33 ///////////////////////////////cc.p////////////////////////////////////////
34
35 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::WLANSSIDInfoElementParser            );
36 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::WLANPowerConstraintInfoElementParser );
37 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::WLANSupportedRatesInfoElementParser  );
38
39
40 prefix_ void senf::WLANPowerConstraintInfoElementParser::dump(std::ostream & os)
41     const
42 {
43     os << "  WLAN PowerConstraint Information Element\n"
44        << "    type:   " << unsigned(type()) << "\n"
45        << "    length: " << unsigned(length()) << "\n"
46        << "    value:  " << unsigned(value()) << "\n";
47 }
48
49 prefix_ void senf::WLANSSIDInfoElementParser::dump(std::ostream & os)
50     const
51 {
52     os << "  WLAN SSID Information Element\n"
53        << "    type:   " << unsigned(type()) << "\n"
54        << "    length: " << unsigned(length()) << "\n"
55        << "    value:  " << value() << "\n";
56 }
57
58 prefix_ void senf::WLANSupportedRatesInfoElementParser::dump(std::ostream & os)
59     const
60 {
61     os << "  WLAN SupportedRates Information Element\n"
62        << "    type:   " << unsigned(type()) << "\n"
63        << "    length: " << unsigned(length()) << "\n"
64        << "    value:  ToDo!\n";
65 }
66
67 ///////////////////////////////cc.e////////////////////////////////////////
68 #undef prefix_
69
70 \f
71 // Local Variables:
72 // mode: c++
73 // fill-column: 100
74 // comment-column: 40
75 // c-file-style: "senf"
76 // indent-tabs-mode: nil
77 // ispell-local-dictionary: "american"
78 // compile-command: "scons -u test"
79 // End: