88a0a360a8fb7d860ab2f58c6d31e0b3d62a89e4
[senf.git] / senf / Packets / DefaultBundle / NDPOptions.cc
1 // $Id: ICMPv6TypePacket.cc 1450 2009-09-28 09:39:01Z tho $
2 //
3 // Copyright (C) 2008
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 <senf/Packets/Packets.hh>
27 #include "ICMPv6Packet.hh"
28 #include "ICMPv6TypePacket.hh"
29 #include "NDPOptions.hh"
30
31 #define prefix_
32 ///////////////////////////////cc.p////////////////////////////////////////
33
34 namespace {
35     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPSourceLLAddressTLVParser );
36     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPTargetLLAddressTLVParser );
37     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPPrefixInformationTLVParser );
38     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPMTUTLVParser );
39 }
40
41 prefix_ void senf::NDPSourceLLAddressTLVParser::dump(std::ostream & os) const
42 {
43     os << senf::fieldName("    Source Link-layer Address") << "\n";
44     os << senf::fieldName("      Link-layer Address")      << source() << "\n";
45 }
46
47 prefix_ void senf::NDPTargetLLAddressTLVParser::dump(std::ostream & os) const
48 {
49     os << senf::fieldName("    Target Link-layer Address") << "\n";
50     os << senf::fieldName("      Link-layer Address")      << target() << "\n";
51 }
52
53 prefix_ void senf::NDPPrefixInformationTLVParser::dump(std::ostream & os) const
54 {
55     os << senf::fieldName("    Prefix Information") << "\n";
56     os << senf::fieldName("      Prefix Length")                         << unsigned(prefixLength()) << "\n";
57     os << senf::fieldName("      On-link Flag")                          << unsigned(l()) << "\n";
58     os << senf::fieldName("      Autonomous Address-configuration Flag") << unsigned(a()) << "\n";
59     os << senf::fieldName("      Reserved(6Bit)")                        << unsigned(reserved1()) << "\n";
60     os << senf::fieldName("      Valid Lifetime")                        << unsigned(validLifetime()) << "\n";
61     os << senf::fieldName("      Preferred Lifetime")                    << unsigned(preferredLifetime()) << "\n";
62     os << senf::fieldName("      Reserved(32Bit)")                       << unsigned(reserved2()) << "\n";
63     os << senf::fieldName("      Prefix")                                << prefix() << "\n";
64
65 }
66
67 prefix_ void senf::NDPMTUTLVParser::dump(std::ostream & os) const
68 {
69     os << senf::fieldName("    MTU Information") << "\n";
70     os << senf::fieldName("      MTU")      << unsigned(mtu()) << "\n";
71 }
72
73
74 ///////////////////////////////cc.e////////////////////////////////////////
75 #undef prefix_