Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / DefaultBundle / NDPOptions.cc
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Sauer <ssauer@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 "NDPOptions.hh"
27
28 #define prefix_
29 //-/////////////////////////////////////////////////////////////////////////////////////////////////
30 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPSourceLLAddressTLVParser );
31 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPTargetLLAddressTLVParser );
32 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPPrefixInformationTLVParser );
33 SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPMTUTLVParser );
34
35 prefix_ void senf::NDPSourceLLAddressTLVParser::dump(std::ostream & os) const
36 {
37     os << "Source Link-layer Address Option:" << "\n";
38     os << senf::fieldName("Link-layer Address") << source() << "\n";
39 }
40
41 prefix_ void senf::NDPTargetLLAddressTLVParser::dump(std::ostream & os) const
42 {
43     os << "Target Link-layer Address Option:" << "\n";
44     os << senf::fieldName("Link-layer Address") << target() << "\n";
45 }
46
47 prefix_ void senf::NDPPrefixInformationTLVParser::dump(std::ostream & os) const
48 {
49     os << "Prefix Information Option:" << "\n";
50     os << senf::fieldName("Prefix Length")                         << unsigned(prefixLength()) << "\n";
51     os << senf::fieldName("On-link Flag")                          << unsigned(l()) << "\n";
52     os << senf::fieldName("Autonomous Address-configuration Flag") << unsigned(a()) << "\n";
53     os << senf::fieldName("Reserved(6Bit)")                        << unsigned(reserved1()) << "\n";
54     os << senf::fieldName("Valid Lifetime")                        << unsigned(validLifetime()) << "\n";
55     os << senf::fieldName("Preferred Lifetime")                    << unsigned(preferredLifetime()) << "\n";
56     os << senf::fieldName("Reserved(32Bit)")                       << unsigned(reserved2()) << "\n";
57     os << senf::fieldName("Prefix")                                << prefix() << "\n";
58
59 }
60
61 prefix_ void senf::NDPMTUTLVParser::dump(std::ostream & os) const
62 {
63     os << "MTU Information Option:" << "\n";
64     os << senf::fieldName("MTU") << unsigned(mtu()) << "\n";
65 }
66
67
68 //-/////////////////////////////////////////////////////////////////////////////////////////////////
69 #undef prefix_