A Discrete-Event Network Simulator
API
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 
39 {
40 public:
44  typedef std::list<Ipv6EndPoint *>EndPoints;
45 
49  typedef std::list<Ipv6EndPoint *>::iterator EndPointsI;
50 
53 
59  bool LookupPortLocal (uint16_t port);
60 
67  bool LookupLocal (Ipv6Address addr, uint16_t port);
68 
87  EndPoints Lookup (Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport, Ptr<Ipv6Interface> incomingInterface);
88 
97  Ipv6EndPoint* SimpleLookup (Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport);
98 
103  Ipv6EndPoint * Allocate (void);
104 
111 
117  Ipv6EndPoint * Allocate (uint16_t port);
118 
126 
135  Ipv6EndPoint * Allocate (Ipv6Address localAddress, uint16_t localPort, Ipv6Address peerAddress, uint16_t peerPort);
136 
141  void DeAllocate (Ipv6EndPoint *endPoint);
142 
147  EndPoints GetEndPoints () const;
148 
149 private:
154  uint16_t AllocateEphemeralPort ();
155 
159  uint16_t m_ephemeral;
160 
164  uint16_t m_portFirst;
165 
169  uint16_t m_portLast;
170 
174  EndPoints m_endPoints;
175 };
176 
177 } /* namespace ns3 */
178 
179 #endif /* IPV6_END_POINT_DEMUX_H */
180 
std::list< Ipv6EndPoint * > EndPoints
Container of the IPv6 endpoints.
EndPoints Lookup(Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport, Ptr< Ipv6Interface > incomingInterface)
lookup for a match with all the parameters.
uint16_t m_ephemeral
The ephemeral port.
std::list< Ipv6EndPoint * >::iterator EndPointsI
Iterator to the container of the IPv6 endpoints.
EndPoints m_endPoints
A list of IPv6 end points.
bool LookupLocal(Ipv6Address addr, uint16_t port)
Lookup for address and port.
uint16_t port
Definition: dsdv-manet.cc:44
Ipv6EndPoint * Allocate(void)
Allocate a Ipv6EndPoint.
uint16_t m_portLast
The last ephemeral port.
void DeAllocate(Ipv6EndPoint *endPoint)
Remove a end point.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
bool LookupPortLocal(uint16_t port)
Lookup for port local.
Ipv6EndPoint * SimpleLookup(Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport)
Simple lookup for a four-tuple match.
uint16_t m_portFirst
The first ephemeral port.
Describes an IPv6 address.
Definition: ipv6-address.h:48
Demultiplexer for end points.
A representation of an IPv6 endpoint/connection.
tuple address
Definition: first.py:37
uint16_t AllocateEphemeralPort()
Allocate a ephemeral port.
EndPoints GetEndPoints() const
Get the entire list of end points registered.