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
ipv6-end-point-demux.h
Go to the documentation of this file.
1
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2
/*
3
* Copyright (c) 2007-2009 Strasbourg University
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: Sebastien Vincent <vincent@clarinet.u-strasbg.fr>
19
*/
20
21
#ifndef IPV6_END_POINT_DEMUX_H
22
#define IPV6_END_POINT_DEMUX_H
23
24
#include <stdint.h>
25
#include <list>
26
#include "ns3/ipv6-address.h"
27
#include "
ipv6-interface.h
"
28
29
namespace
ns3 {
30
31
class
Ipv6EndPoint;
32
37
class
Ipv6EndPointDemux
38
{
39
public
:
43
typedef
std::list<Ipv6EndPoint *>
EndPoints
;
44
48
typedef
std::list<Ipv6EndPoint *>::iterator
EndPointsI
;
49
50
Ipv6EndPointDemux
();
51
~Ipv6EndPointDemux
();
52
58
bool
LookupPortLocal
(uint16_t
port
);
59
66
bool
LookupLocal
(
Ipv6Address
addr, uint16_t
port
);
67
77
EndPoints
Lookup
(
Ipv6Address
dst, uint16_t dport,
Ipv6Address
src, uint16_t sport,
Ptr<Ipv6Interface>
incomingInterface);
78
87
Ipv6EndPoint
*
SimpleLookup
(
Ipv6Address
dst, uint16_t dport,
Ipv6Address
src, uint16_t sport);
88
93
Ipv6EndPoint
*
Allocate
(
void
);
94
100
Ipv6EndPoint
*
Allocate
(
Ipv6Address
address
);
101
107
Ipv6EndPoint
*
Allocate
(uint16_t
port
);
108
115
Ipv6EndPoint
*
Allocate
(
Ipv6Address
address
, uint16_t
port
);
116
125
Ipv6EndPoint
*
Allocate
(
Ipv6Address
localAddress, uint16_t localPort,
Ipv6Address
peerAddress, uint16_t peerPort);
126
131
void
DeAllocate
(
Ipv6EndPoint
*endPoint);
132
137
EndPoints
GetEndPoints
()
const
;
138
139
private
:
144
uint16_t
AllocateEphemeralPort
();
145
149
uint16_t
m_ephemeral
;
150
154
uint16_t
m_portFirst
;
155
159
uint16_t
m_portLast
;
160
164
EndPoints
m_endPoints
;
165
};
166
167
}
/* namespace ns3 */
168
169
#endif
/* IPV6_END_POINT_DEMUX_H */
170
ns3::Ptr< Ipv6Interface >
ns3::Ipv6EndPointDemux::EndPoints
std::list< Ipv6EndPoint * > EndPoints
Container of the IPv6 endpoints.
Definition:
ipv6-end-point-demux.h:43
ns3::Ipv6EndPointDemux::Lookup
EndPoints Lookup(Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport, Ptr< Ipv6Interface > incomingInterface)
lookup for a match with all the parameters.
Definition:
ipv6-end-point-demux.cc:171
ns3::Ipv6EndPointDemux::m_ephemeral
uint16_t m_ephemeral
The ephemeral port.
Definition:
ipv6-end-point-demux.h:149
ns3::Ipv6EndPointDemux::EndPointsI
std::list< Ipv6EndPoint * >::iterator EndPointsI
Iterator to the container of the IPv6 endpoints.
Definition:
ipv6-end-point-demux.h:48
ns3::Ipv6EndPointDemux::m_endPoints
EndPoints m_endPoints
A list of IPv6 end points.
Definition:
ipv6-end-point-demux.h:164
ns3::Ipv6EndPointDemux::LookupLocal
bool LookupLocal(Ipv6Address addr, uint16_t port)
Lookup for address and port.
Definition:
ipv6-end-point-demux.cc:62
port
uint16_t port
Definition:
dsdv-manet.cc:44
ns3::Ipv6EndPointDemux::Ipv6EndPointDemux
Ipv6EndPointDemux()
Definition:
ipv6-end-point-demux.cc:30
ns3::Ipv6EndPointDemux::Allocate
Ipv6EndPoint * Allocate(void)
Allocate a Ipv6EndPoint.
Definition:
ipv6-end-point-demux.cc:76
ns3::Ipv6EndPointDemux::m_portLast
uint16_t m_portLast
The last ephemeral port.
Definition:
ipv6-end-point-demux.h:159
ns3::Ipv6EndPointDemux::DeAllocate
void DeAllocate(Ipv6EndPoint *endPoint)
Remove a end point.
Definition:
ipv6-end-point-demux.cc:152
ns3::Ipv6EndPointDemux::LookupPortLocal
bool LookupPortLocal(uint16_t port)
Lookup for port local.
Definition:
ipv6-end-point-demux.cc:49
ns3::Ipv6EndPointDemux::SimpleLookup
Ipv6EndPoint * SimpleLookup(Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport)
Simple lookup for a four-tuple match.
Definition:
ipv6-end-point-demux.cc:282
ns3::Ipv6EndPointDemux::m_portFirst
uint16_t m_portFirst
The first ephemeral port.
Definition:
ipv6-end-point-demux.h:154
ns3::Ipv6EndPointDemux::~Ipv6EndPointDemux
~Ipv6EndPointDemux()
Definition:
ipv6-end-point-demux.cc:38
ns3::Ipv6Address
Describes an IPv6 address.
Definition:
ipv6-address.h:46
ns3::Ipv6EndPointDemux
Demultiplexor for end points.
Definition:
ipv6-end-point-demux.h:37
ns3::Ipv6EndPoint
A representation of an internet IPv6 endpoint/connection.
Definition:
ipv6-end-point.h:48
first.address
tuple address
Definition:
first.py:37
ns3::Ipv6EndPointDemux::AllocateEphemeralPort
uint16_t AllocateEphemeralPort()
Allocate a ephemeral port.
Definition:
ipv6-end-point-demux.cc:322
ipv6-interface.h
ns3::Ipv6EndPointDemux::GetEndPoints
EndPoints GetEndPoints() const
Get the entire list of end points registered.
Definition:
ipv6-end-point-demux.cc:344
src
internet
model
ipv6-end-point-demux.h
Generated on Sat Apr 19 2014 14:06:56 for ns-3 by
1.8.6