X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FDefaultBundle%2FNDPOptions.cc;h=ea7d26145ea10142893d12547a43b93225eb7def;hb=HEAD;hp=88a0a360a8fb7d860ab2f58c6d31e0b3d62a89e4;hpb=209950ee5f6898978cd68614ef339ae3531c5c53;p=senf.git diff --git a/senf/Packets/DefaultBundle/NDPOptions.cc b/senf/Packets/DefaultBundle/NDPOptions.cc index 88a0a36..ea7d261 100644 --- a/senf/Packets/DefaultBundle/NDPOptions.cc +++ b/senf/Packets/DefaultBundle/NDPOptions.cc @@ -1,75 +1,75 @@ -// $Id: ICMPv6TypePacket.cc 1450 2009-09-28 09:39:01Z tho $ +// $Id$ // -// Copyright (C) 2008 +// Copyright (C) 2010 // Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY -// Stefan Sauer // -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. +// The contents of this file are subject to the Fraunhofer FOKUS Public License +// Version 1.0 (the "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// http://senf.berlios.de/license.html // -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. +// The Fraunhofer FOKUS Public License Version 1.0 is based on, +// but modifies the Mozilla Public License Version 1.1. +// See the full license text for the amendments. // -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the -// Free Software Foundation, Inc., -// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// Software distributed under the License is distributed on an "AS IS" basis, +// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License +// for the specific language governing rights and limitations under the License. +// +// The Original Code is Fraunhofer FOKUS code. +// +// The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. +// (registered association), Hansastraße 27 c, 80686 Munich, Germany. +// All Rights Reserved. +// +// Contributor(s): +// Stefan Sauer + // Definition of non-inline non-template functions // Custom includes -#include -#include "ICMPv6Packet.hh" -#include "ICMPv6TypePacket.hh" #include "NDPOptions.hh" #define prefix_ -///////////////////////////////cc.p//////////////////////////////////////// - -namespace { - SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPSourceLLAddressTLVParser ); - SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPTargetLLAddressTLVParser ); - SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPPrefixInformationTLVParser ); - SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPMTUTLVParser ); -} +//-///////////////////////////////////////////////////////////////////////////////////////////////// +SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPSourceLLAddressTLVParser ); +SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPTargetLLAddressTLVParser ); +SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPPrefixInformationTLVParser ); +SENF_PACKET_TLV_REGISTRY_REGISTER( senf::NDPMTUTLVParser ); prefix_ void senf::NDPSourceLLAddressTLVParser::dump(std::ostream & os) const { - os << senf::fieldName(" Source Link-layer Address") << "\n"; - os << senf::fieldName(" Link-layer Address") << source() << "\n"; + os << "Source Link-layer Address Option:" << "\n"; + os << senf::fieldName("Link-layer Address") << source() << "\n"; } prefix_ void senf::NDPTargetLLAddressTLVParser::dump(std::ostream & os) const { - os << senf::fieldName(" Target Link-layer Address") << "\n"; - os << senf::fieldName(" Link-layer Address") << target() << "\n"; + os << "Target Link-layer Address Option:" << "\n"; + os << senf::fieldName("Link-layer Address") << target() << "\n"; } prefix_ void senf::NDPPrefixInformationTLVParser::dump(std::ostream & os) const { - os << senf::fieldName(" Prefix Information") << "\n"; - os << senf::fieldName(" Prefix Length") << unsigned(prefixLength()) << "\n"; - os << senf::fieldName(" On-link Flag") << unsigned(l()) << "\n"; - os << senf::fieldName(" Autonomous Address-configuration Flag") << unsigned(a()) << "\n"; - os << senf::fieldName(" Reserved(6Bit)") << unsigned(reserved1()) << "\n"; - os << senf::fieldName(" Valid Lifetime") << unsigned(validLifetime()) << "\n"; - os << senf::fieldName(" Preferred Lifetime") << unsigned(preferredLifetime()) << "\n"; - os << senf::fieldName(" Reserved(32Bit)") << unsigned(reserved2()) << "\n"; - os << senf::fieldName(" Prefix") << prefix() << "\n"; + os << "Prefix Information Option:" << "\n"; + os << senf::fieldName("Prefix Length") << unsigned(prefixLength()) << "\n"; + os << senf::fieldName("On-link Flag") << unsigned(l()) << "\n"; + os << senf::fieldName("Autonomous Address-configuration Flag") << unsigned(a()) << "\n"; + os << senf::fieldName("Reserved(6Bit)") << unsigned(reserved1()) << "\n"; + os << senf::fieldName("Valid Lifetime") << unsigned(validLifetime()) << "\n"; + os << senf::fieldName("Preferred Lifetime") << unsigned(preferredLifetime()) << "\n"; + os << senf::fieldName("Reserved(32Bit)") << unsigned(reserved2()) << "\n"; + os << senf::fieldName("Prefix") << prefix() << "\n"; } prefix_ void senf::NDPMTUTLVParser::dump(std::ostream & os) const { - os << senf::fieldName(" MTU Information") << "\n"; - os << senf::fieldName(" MTU") << unsigned(mtu()) << "\n"; + os << "MTU Information Option:" << "\n"; + os << senf::fieldName("MTU") << unsigned(mtu()) << "\n"; } -///////////////////////////////cc.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_