X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FPackets%2FDefaultBundle%2FICMPv6TypePacket.cc;h=d22d0b34719e63b2e6d0700cd9efd2bc4c7cde1a;hb=HEAD;hp=1f014e2a7bcd8a016f6a0c65126b83747d19c483;hpb=b559d8e50f059a49d0ac98aba08b4480a3da5b22;p=senf.git diff --git a/senf/Packets/DefaultBundle/ICMPv6TypePacket.cc b/senf/Packets/DefaultBundle/ICMPv6TypePacket.cc index 1f014e2..d22d0b3 100644 --- a/senf/Packets/DefaultBundle/ICMPv6TypePacket.cc +++ b/senf/Packets/DefaultBundle/ICMPv6TypePacket.cc @@ -2,33 +2,38 @@ // // Copyright (C) 2008 // Fraunhofer Institute for Open Communication Systems (FOKUS) -// Competence Center NETwork research (NET), St. Augustin, GERMANY -// Philipp Batroff // -// 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): +// Philipp Batroff + // Definition of non-inline non-template functions -// Custom includes -#include -#include "ICMPv6Packet.hh" #include "ICMPv6TypePacket.hh" +// Custom includes + #define prefix_ -///////////////////////////////cc.p//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// namespace { SENF_PACKET_REGISTRY_REGISTER( senf::ICMPTypes, 1, senf::ICMPv6ErrDestUnreachable ); @@ -46,6 +51,24 @@ namespace { SENF_PACKET_REGISTRY_REGISTER( senf::ICMPTypes, 143, senf::MLDv2ListenerReport ); } +prefix_ void senf::ICMPv6ErrDestUnreachableParser::setErrCode(int code) +{ + ICMPv6Packet icmpv6 (Packet().rfind(senf::nothrow)); + icmpv6->code() = code; +} + +prefix_ void senf::ICMPv6ErrParamProblemParser::setErrCode(int code) +{ + ICMPv6Packet icmpv6 (packet().rfind(senf::nothrow)); + icmpv6->code() = code; +} + +prefix_ void senf::ICMPv6ErrTimeExceededParser::setErrCode(int code) +{ + ICMPv6Packet icmpv6 (packet().rfind(senf::nothrow)); + icmpv6->code() = code; +} + prefix_ void senf::ICMPv6EchoRequestType::dump(packet p, std::ostream & os) { os << "ICMPv6 Echo Request:\n" @@ -62,25 +85,25 @@ prefix_ void senf::ICMPv6EchoReplyType::dump(packet p, std::ostream & os) prefix_ void senf::ICMPv6ErrDestUnreachableType::dump(packet p, std::ostream & os) { - os << "ICMPv6 Error Destination Unreachable (no further fields available here)\n"; + os << "ICMPv6 Error Destination Unreachable (no further fields available here)\n"; } prefix_ void senf::ICMPv6ErrTooBigType::dump(packet p, std::ostream & os) { os << "ICMPv6 Error Packet Too Big:\n" - << senf::fieldName("MTU") << unsigned(p->mtu() ) << "\n"; + << senf::fieldName("MTU") << unsigned(p->mtu() ) << "\n"; } prefix_ void senf::ICMPv6ErrTimeExceededType::dump(packet p, std::ostream & os) { os << "ICMPv6 Error Time Exceeded:\n" - << senf::fieldName("Unused(32Bit)") << unsigned(p->unused() ) << "\n"; + << senf::fieldName("Unused(32Bit)") << unsigned(p->unused() ) << "\n"; } prefix_ void senf::ICMPv6ErrParamProblemType::dump(packet p, std::ostream & os) { os << "ICMPv6 Error Parameter Problem:\n" - << senf::fieldName("Pointer") << unsigned(p->pointer() ) << "\n"; + << senf::fieldName("Pointer") << unsigned(p->pointer() ) << "\n"; } prefix_ void senf::MLDv2ListenerQueryType::dump(packet p, std::ostream & os) @@ -94,32 +117,32 @@ prefix_ void senf::MLDv2ListenerQueryType::dump(packet p, std::ostream & os) << senf::fieldName("Querier's Robustness Variable") << unsigned(p->qrv()) << "\n" << senf::fieldName("Querier's Query Interval Code") << unsigned(p->qqic()) << "\n" << " Source Addresses:\n"; - senf::MLDv2ListenerQuery::Parser::srcAddresses_t::container c (p->srcAddresses()); - senf::MLDv2ListenerQuery::Parser::srcAddresses_t::container::iterator i (c.begin()); + parser::srcAddresses_t::container c (p->srcAddresses()); + parser::srcAddresses_t::container::iterator i (c.begin()); for (unsigned int nr =1; i != c.end(); ++i, ++nr) - os << " " << nr << ".) " << *i << "\n"; - os << "\n"; + os << " " << nr << ".) " << *i << "\n"; + os << "\n"; } prefix_ void senf::MLDv2ListenerReportType::dump(packet p, std::ostream & os) { os << "ICMPv6 Multicast Listener Report Message:\n" - << senf::fieldName("Reserved") << unsigned(p->reserved() ) + << senf::fieldName("Reserved") << unsigned(p->reserved() ) <<"\n Multicast Address Records:\n"; - - senf::MLDv2ListenerReport::Parser::mcastAddrRecords_t::container cAddrR (p->mcastAddrRecords() ); - senf::MLDv2ListenerReport::Parser::mcastAddrRecords_t::container::iterator iAddrR (cAddrR.begin() ); + + MLDv2ListenerReport::Parser::mcastAddrRecords_t::container cAddrR (p->mcastAddrRecords() ); + MLDv2ListenerReport::Parser::mcastAddrRecords_t::container::iterator iAddrR (cAddrR.begin() ); for (; iAddrR != cAddrR.end(); ++iAddrR) { os << senf::fieldName(" Record Type") << unsigned(iAddrR->recordType()) << "\n" << senf::fieldName(" Multicast Address") << iAddrR->mcAddress() << "\n" << " Source Addresses\n:"; - senf::MLDv2AddressRecordParser::srcAddresses_t::container cSrcAddr (iAddrR->srcAddresses()); - senf::MLDv2AddressRecordParser::srcAddresses_t::container::iterator iSrcAddr (cSrcAddr.begin()); + MLDv2AddressRecordParser::srcAddresses_t::container cSrcAddr (iAddrR->srcAddresses()); + MLDv2AddressRecordParser::srcAddresses_t::container::iterator iSrcAddr (cSrcAddr.begin()); for (;iSrcAddr != cSrcAddr.end();++iSrcAddr) os << " " << *iSrcAddr << "\n"; os << " Auxiliary Data:\n"; - senf::MLDv2AddressRecordParser::auxData_t::container cAuxD ( iAddrR->auxData() ); - senf::MLDv2AddressRecordParser::auxData_t::container::iterator iAuxD (cAuxD.begin() ); + MLDv2AddressRecordParser::auxData_t::container cAuxD ( iAddrR->auxData() ); + MLDv2AddressRecordParser::auxData_t::container::iterator iAuxD (cAuxD.begin() ); for (;iAuxD != cAuxD.end(); ++iAuxD) os << " " << *iAuxD << "\n"; } @@ -129,10 +152,10 @@ prefix_ void senf::NDPRouterSolicitationMessageType::dump(packet p, std::ostream { os << "ICMPv6 Neighbor Discovery Router Solicitation Message:\n" << senf::fieldName("Reserved(32Bit)") << unsigned(p->reserved()) << "\n"; - senf::NDPRouterSolicitationMessage::Parser::options_t::container optC(p->options() ); - senf::NDPRouterSolicitationMessage::Parser::options_t::container::const_iterator listIter (optC.begin()); + parser::options_t::container optC (p->options()); + parser::options_t::container::const_iterator listIter (optC.begin()); for (; listIter != optC.end(); ++listIter) { - listIter->dump(os); + listIter->dump(os); } } @@ -146,8 +169,8 @@ prefix_ void senf::NDPRouterAdvertisementMessageType::dump(packet p, std::ostrea << senf::fieldName("Router Lifetime") << unsigned(p->routerLifetime()) << "\n" << senf::fieldName("Reachable Time") << unsigned(p->reachableTime()) << "\n" << senf::fieldName("Retrans Timer") << unsigned(p->retransTimer()) << "\n"; - senf::NDPRouterAdvertisementMessage::Parser::options_t::container optC(p->options() ); - senf::NDPRouterAdvertisementMessage::Parser::options_t::container::const_iterator listIter (optC.begin()); + parser::options_t::container optC (p->options()); + parser::options_t::container::const_iterator listIter (optC.begin()); for (; listIter != optC.end(); ++listIter) { listIter->dump(os); } @@ -158,8 +181,8 @@ prefix_ void senf::NDPNeighborSolicitationMessageType::dump(packet p, std::ostre os << "ICMPv6 Neighbor Discovery Neighbor Solicitation Message:\n" << senf::fieldName("Reserved(32Bit)") << unsigned(p->reserved()) << "\n" << senf::fieldName("Target Address") << p->target() << "\n"; - senf::NDPNeighborSolicitationMessage::Parser::options_t::container optC(p->options() ); - senf::NDPNeighborSolicitationMessage::Parser::options_t::container::const_iterator listIter (optC.begin()); + parser::options_t::container optC (p->options()); + parser::options_t::container::const_iterator listIter (optC.begin()); for (; listIter != optC.end(); ++listIter) { listIter->dump(os); } @@ -173,8 +196,8 @@ prefix_ void senf::NDPNeighborAdvertisementMessageType::dump(packet p, std::ostr << senf::fieldName("Override Flag") << unsigned(p->o()) << "\n" << senf::fieldName("Reserved(29Bit)") << unsigned(p->reserved()) << "\n" << senf::fieldName("Target Address") << p->target() << "\n"; - senf::NDPNeighborAdvertisementMessage::Parser::options_t::container optC(p->options() ); - senf::NDPNeighborAdvertisementMessage::Parser::options_t::container::const_iterator listIter (optC.begin()); + parser::options_t::container optC(p->options() ); + parser::options_t::container::const_iterator listIter (optC.begin()); for (; listIter != optC.end(); ++listIter) { listIter->dump(os); } @@ -186,11 +209,11 @@ prefix_ void senf::NDPRedirectMessageType::dump(packet p, std::ostream & os) << senf::fieldName("Reserved(32Bit)") << unsigned(p->reserved()) << "\n" << senf::fieldName("Target Address") << p->target() << "\n" << senf::fieldName("Destination Address") << p->destination() << "\n"; - senf::NDPRedirectMessage::Parser::options_t::container optC(p->options() ); - senf::NDPRedirectMessage::Parser::options_t::container::const_iterator listIter (optC.begin()); + parser::options_t::container optC(p->options() ); + parser::options_t::container::const_iterator listIter (optC.begin()); for (; listIter != optC.end(); ++listIter) { - listIter->dump(os); + listIter->dump(os); } } -///////////////////////////////cc.e//////////////////////////////////////// +//-///////////////////////////////////////////////////////////////////////////////////////////////// #undef prefix_