User Manual, Developers Guide and API Documentation

LoggingTarget.cpp

Go to the documentation of this file.
00001 /*******************************************************************************
00002  * This file is part of openWNS (open Wireless Network Simulator)
00003  * _____________________________________________________________________________
00004  *
00005  * Copyright (C) 2004-2007
00006  * Chair of Communication Networks (ComNets)
00007  * Kopernikusstr. 5, D-52074 Aachen, Germany
00008  * phone: ++49-241-80-27910,
00009  * fax: ++49-241-80-22242
00010  * email: info@openwns.org
00011  * www: http://www.openwns.org
00012  * _____________________________________________________________________________
00013  *
00014  * openWNS is free software; you can redistribute it and/or modify it under the
00015  * terms of the GNU Lesser General Public License version 2 as published by the
00016  * Free Software Foundation;
00017  *
00018  * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY
00019  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
00020  * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
00021  * details.
00022  *
00023  * You should have received a copy of the GNU Lesser General Public License
00024  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00025  *
00026  ******************************************************************************/
00027 
00028 #include <IP/iptables/targets/LoggingTarget.hpp>
00029 
00030 using namespace ip::iptables::targets;
00031 
00032 STATIC_FACTORY_REGISTER_WITH_CREATOR(
00033     LoggingTarget,
00034     TargetInterface,
00035     "loggingTarget",
00036     wns::PyConfigViewCreator);
00037 
00038 LoggingTarget::LoggingTarget(const wns::pyconfig::View& _pyco):
00039     log(_pyco.get("logger"))
00040 {
00041 }
00042 
00043 LoggingTarget::~LoggingTarget()
00044 {
00045 }
00046 
00047 TargetResult
00048 LoggingTarget::mangle(ip::IPCommand* ipHeader)
00049 {
00050     MESSAGE_BEGIN(NORMAL, log, m, "");
00051     m << *ipHeader;
00052     MESSAGE_END();
00053 
00054     return CONT;
00055 }
00056 
00057 TargetResult
00058 LoggingTarget::mangle(ip::IPCommand* ipHeader, wns::service::tl::ITCPHeader* tcpHeader)
00059 {
00060     MESSAGE_BEGIN(NORMAL, log, m, "");
00061     m << *ipHeader;
00062     m << " TCP : " << tcpHeader->getFlowID();
00063     if (tcpHeader->getUrgentFlag())
00064     {
00065         m << " URG";
00066     }
00067 
00068     if (tcpHeader->getAckFlag())
00069     {
00070         m << " ACK";
00071     }
00072     if (tcpHeader->getPushFlag())
00073     {
00074         m << " PSH";
00075     }
00076     if (tcpHeader->getSynFlag())
00077     {
00078         m << " SYN";
00079     }
00080     if (tcpHeader->getFinFlag())
00081     {
00082         m << " FIN";
00083     }
00084 
00085     MESSAGE_END();
00086 
00087     return CONT;
00088 }
00089 
00090 TargetResult
00091 LoggingTarget::mangle(ip::IPCommand* ipHeader, wns::service::tl::IUDPHeader* udpHeader)
00092 {
00093     MESSAGE_BEGIN(NORMAL, log, m, "");
00094     m << *ipHeader;
00095     m << " UDP : " << udpHeader->getFlowID();
00096     MESSAGE_END();
00097 
00098     return CONT;
00099 }

Generated on Thu May 24 03:32:16 2012 for openWNS by  doxygen 1.5.5