A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ip-l4-protocol.cc
Go to the documentation of this file.
1 // -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*-
2 //
3 // Copyright (c) 2006 Georgia Tech Research Corporation
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License version 2 as
7 // published by the Free Software Foundation;
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 //
18 // Author: George F. Riley<riley@ece.gatech.edu>
19 //
20 
21 // NS3 - Layer 4 Protocol base class
22 // George F. Riley, Georgia Tech, Spring 2007
23 
24 #include "ip-l4-protocol.h"
25 #include "ns3/uinteger.h"
26 #include "ns3/log.h"
27 
28 NS_LOG_COMPONENT_DEFINE ("IpL4Protocol");
29 
30 namespace ns3 {
31 
32 NS_OBJECT_ENSURE_REGISTERED (IpL4Protocol);
33 
34 TypeId
36 {
37  static TypeId tid = TypeId ("ns3::IpL4Protocol")
38  .SetParent<Object> ()
39  .AddAttribute ("ProtocolNumber", "The Ip protocol number.",
40  UintegerValue (0),
41  MakeUintegerAccessor (&IpL4Protocol::GetProtocolNumber),
42  MakeUintegerChecker<int> ())
43  ;
44  return tid;
45 }
46 
48 {
49  NS_LOG_FUNCTION (this);
50 }
51 
52 void
53 IpL4Protocol::ReceiveIcmp (Ipv4Address icmpSource, uint8_t icmpTtl,
54  uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo,
55  Ipv4Address payloadSource,Ipv4Address payloadDestination,
56  const uint8_t payload[8])
57 {
58  NS_LOG_FUNCTION (this << icmpSource << static_cast<uint32_t> (icmpTtl) << static_cast<uint32_t> (icmpType) << static_cast<uint32_t> (icmpCode) << icmpInfo << payloadSource << payloadDestination << payload);
59 }
60 void
61 IpL4Protocol::ReceiveIcmp (Ipv6Address icmpSource, uint8_t icmpTtl,
62  uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo,
63  Ipv6Address payloadSource, Ipv6Address payloadDestination,
64  const uint8_t payload[8])
65 {
66  NS_LOG_FUNCTION (this << icmpSource << static_cast<uint32_t> (icmpTtl) << static_cast<uint32_t> (icmpType) << static_cast<uint32_t> (icmpCode) << icmpInfo << payloadSource << payloadDestination << payload);
67 }
68 
69 } //namespace ns3
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register the class in the ns-3 factory.
Definition: object-base.h:38
virtual void ReceiveIcmp(Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo, Ipv4Address payloadSource, Ipv4Address payloadDestination, const uint8_t payload[8])
Called from lower-level layers to send the ICMP packet up in the stack.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
virtual int GetProtocolNumber(void) const =0
Hold an unsigned integer type.
Definition: uinteger.h:46
static TypeId GetTypeId(void)
Get the type ID.
Describes an IPv6 address.
Definition: ipv6-address.h:46
Ipv4 addresses are stored in host order in this class.
Definition: ipv4-address.h:38
virtual ~IpL4Protocol()
a base class which provides memory management and object aggregation
Definition: object.h:64
a unique identifier for an interface.
Definition: type-id.h:49
TypeId SetParent(TypeId tid)
Definition: type-id.cc:610