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 
68  bool LookupLocal (Ptr<NetDevice> boundNetDevice, Ipv6Address addr, uint16_t port);
69 
88  EndPoints Lookup (Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport, Ptr<Ipv6Interface> incomingInterface);
89 
98  Ipv6EndPoint* SimpleLookup (Ipv6Address dst, uint16_t dport, Ipv6Address src, uint16_t sport);
99 
104  Ipv6EndPoint * Allocate (void);
105 
112 
119  Ipv6EndPoint * Allocate (Ptr<NetDevice> boundNetDevice, uint16_t port);
120 
128  Ipv6EndPoint * Allocate (Ptr<NetDevice> boundNetDevice, Ipv6Address address, uint16_t port);
129 
139  Ipv6EndPoint * Allocate (Ptr<NetDevice> boundNetDevice,
140  Ipv6Address localAddress, uint16_t localPort,
141  Ipv6Address peerAddress, uint16_t peerPort);
142 
147  void DeAllocate (Ipv6EndPoint *endPoint);
148 
153  EndPoints GetEndPoints () const;
154 
155 private:
160  uint16_t AllocateEphemeralPort ();
161 
165  uint16_t m_ephemeral;
166 
170  uint16_t m_portFirst;
171 
175  uint16_t m_portLast;
176 
181 };
182 
183 } /* namespace ns3 */
184 
185 #endif /* IPV6_END_POINT_DEMUX_H */
186 
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
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.
uint16_t port
Definition: dsdv-manet.cc:45
bool LookupLocal(Ptr< NetDevice > boundNetDevice, Ipv6Address addr, uint16_t port)
Lookup for address and port.
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.
address
Definition: first.py:37
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:49
Demultiplexer for end points.
A representation of an IPv6 endpoint/connection.
uint16_t AllocateEphemeralPort()
Allocate a ephemeral port.
EndPoints GetEndPoints() const
Get the entire list of end points registered.