Added dump information for NDP options to appropriate ICMPv6 types
[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 ///////////////////////////////cc.p////////////////////////////////////////
30
31 namespace {
32     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPSourceLLAddressTLVParser );
33     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPTargetLLAddressTLVParser );
34     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPPrefixInformationTLVParser );
35     SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPMTUTLVParser );
36 }
37
38 prefix_ void senf::NDPSourceLLAddressTLVParser::dump(std::ostream & os) const
39 {
40     os << "Source Link-layer Address Option:" << "\n";
41     os << senf::fieldName("Link-layer Address") << source() << "\n";
42 }
43
44 prefix_ void senf::NDPTargetLLAddressTLVParser::dump(std::ostream & os) const
45 {
46     os << "Target Link-layer Address Option:" << "\n";
47     os << senf::fieldName("Link-layer Address") << target() << "\n";
48 }
49
50 prefix_ void senf::NDPPrefixInformationTLVParser::dump(std::ostream & os) const
51 {
52     os << "Prefix Information Option:" << "\n";
53     os << senf::fieldName("Prefix Length")                         << unsigned(prefixLength()) << "\n";
54     os << senf::fieldName("On-link Flag")                          << unsigned(l()) << "\n";
55     os << senf::fieldName("Autonomous Address-configuration Flag") << unsigned(a()) << "\n";
56     os << senf::fieldName("Reserved(6Bit)")                        << unsigned(reserved1()) << "\n";
57     os << senf::fieldName("Valid Lifetime")                        << unsigned(validLifetime()) << "\n";
58     os << senf::fieldName("Preferred Lifetime")                    << unsigned(preferredLifetime()) << "\n";
59     os << senf::fieldName("Reserved(32Bit)")                       << unsigned(reserved2()) << "\n";
60     os << senf::fieldName("Prefix")                                << prefix() << "\n";
61
62 }
63
64 prefix_ void senf::NDPMTUTLVParser::dump(std::ostream & os) const
65 {
66     os << "MTU Information Option:" << "\n";
67     os << senf::fieldName("MTU") << unsigned(mtu()) << "\n";
68 }
69
70
71 ///////////////////////////////cc.e////////////////////////////////////////
72 #undef prefix_