/usr/include/ptclib/pnat.h is in libpt-1.10.10-dev 1.10.10-3.1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 | /*
* pnat.h
*
* NAT Strategy support for Portable Windows Library.
*
* Virteos is a Trade Mark of ISVO (Asia) Pte Ltd.
*
* Copyright (c) 2004 ISVO (Asia) Pte Ltd. All Rights Reserved.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
*
* The Original Code is derived from and used in conjunction with the
* OpenH323 Project (www.openh323.org/)
*
* The Initial Developer of the Original Code is ISVO (Asia) Pte Ltd.
*
*
* Contributor(s): ______________________________________.
*
* $Log: pnat.h,v $
* Revision 1.3.2.1 2006/01/27 03:43:24 csoutheren
* Backported changes to CVS head into Phobos
*
* Revision 1.4 2006/01/26 03:23:41 shorne
* Fix compile error when merging code
*
* Revision 1.3 2005/11/30 12:47:37 csoutheren
* Removed tabs, reformatted some code, and changed tags for Doxygen
*
* Revision 1.2 2005/07/13 11:15:14 csoutheren
* Backported NAT abstraction files from isvo branch
*
* Revision 1.1.2.1 2005/04/25 13:23:19 shorne
* Initial version
*
*
*/
#include <ptlib.h>
#include <ptlib/sockets.h>
#ifndef P_NATMETHOD
#define P_NATMETHOD
/** PNatMethod
Base Network Address Traversal Method class
All NAT Traversal Methods are derived off this class.
There are quite a few methods of NAT Traversal. The
only purpose of this class is to provide a common
interface. It is intentionally minimalistic.
*/
class PNatMethod : public PObject
{
PCLASSINFO(PNatMethod,PObject);
public:
/**@name Construction */
//@{
/** Default Contructor
*/
PNatMethod();
/** Deconstructor
*/
~PNatMethod();
//@}
/**@name General Functions */
//@{
/** GetExternalAddress
Get the acquired External IP Address.
*/
virtual BOOL GetExternalAddress(
PIPSocket::Address & externalAddress, /// External address of router
const PTimeInterval & maxAge = 1000 /// Maximum age for caching
) =0;
/** CreateSocketPair
Create the UDP Socket pair
*/
virtual BOOL CreateSocketPair(
PUDPSocket * & socket1,
PUDPSocket * & socket2
) =0;
/**Returns whether the Nat Method is ready and available in
assisting in NAT Traversal. The principal is function is
to allow the EP to detect various methods and if a method
is detected then this method is available for NAT traversal
The Order of adding to the PNstStrategy determines which method
is used
*/
virtual BOOL IsAvailable() { return FALSE; };
/**Set the port ranges to be used on local machine.
Note that the ports used on the NAT router may not be the same unless
some form of port forwarding is present.
If the port base is zero then standard operating system port allocation
method is used.
If the max port is zero then it will be automatically set to the port
base + 99.
*/
virtual void SetPortRanges(
WORD portBase, /// Single socket port number base
WORD portMax = 0, /// Single socket port number max
WORD portPairBase = 0, /// Socket pair port number base
WORD portPairMax = 0 /// Socket pair port number max
);
//@}
protected:
struct PortInfo {
PMutex mutex;
WORD basePort;
WORD maxPort;
WORD currentPort;
} singlePortInfo, pairedPortInfo;
};
/////////////////////////////////////////////////////////////
PLIST(PNatList, PNatMethod);
/////////////////////////////////////////////////////////////
/** PNatStrategy
The main container for all
NAT traversal Strategies.
*/
class PNatStrategy : public PObject
{
PCLASSINFO(PNatStrategy,PObject);
public :
/**@name Construction */
//@{
/** Default Contructor
*/
PNatStrategy();
/** Deconstructor
*/
~PNatStrategy();
//@}
/**@name Method Handling */
//@{
/** AddMethod
This function is used to add the required NAT
Traversal Method. The Order of Loading is important
The first added has the highest priority.
*/
void AddMethod(PNatMethod * method);
/** GetMethod
This function retrieves the first available NAT
Traversal Method. If no available NAT Method is found
then NULL is returned.
*/
PNatMethod * GetMethod();
/**Set the port ranges to be used on local machine.
Note that the ports used on the NAT router may not be the same unless
some form of port forwarding is present.
If the port base is zero then standard operating system port allocation
method is used.
If the max port is zero then it will be automatically set to the port
base + 99.
*/
void SetPortRanges(
WORD portBase, /// Single socket port number base
WORD portMax = 0, /// Single socket port number max
WORD portPairBase = 0, /// Socket pair port number base
WORD portPairMax = 0 /// Socket pair port number max
);
//@}
private:
PNatList natlist;
};
#endif
|