A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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
35
IpL4Protocol::GetTypeId
(
void
)
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
47
IpL4Protocol::~IpL4Protocol
()
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
src
internet
model
ip-l4-protocol.cc
Generated on Tue May 14 2013 11:08:21 for ns-3 by
1.8.1.2