/usr/include/ptlib/socket.h is in libpt-dev 2.10.11~dfsg-2.1.
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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | /*
* socket.h
*
* Berkley Socket channel ancestor class.
*
* Portable Tools Library
*
* Copyright (c) 1993-1998 Equivalence Pty. Ltd.
*
* 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 Portable Windows Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Portions are Copyright (C) 1993 Free Software Foundation, Inc.
* All Rights Reserved.
*
* Contributor(s): ______________________________________.
*
* $Revision: 27568 $
* $Author: ededu $
* $Date: 2012-05-03 07:57:49 -0500 (Thu, 03 May 2012) $
*/
#ifndef PTLIB_SOCKET_H
#define PTLIB_SOCKET_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <ptlib/channel.h>
#ifdef __NUCLEUS_PLUS__
#include <sys/socket.h>
#endif
class PSocket;
PLIST(PSocketList, PSocket);
/**A network communications channel. This is based on the concepts in the
Berkley Sockets library.
A socket represents a bidirectional communications channel to a <i>port</i>
at a remote <i>host</i>.
*/
class PSocket : public PChannel
{
PCLASSINFO(PSocket, PChannel);
protected:
PSocket();
public:
/**@name Socket establishment functions */
//@{
/**Connect a socket to a remote host on the specified port number. This is
typically used by the client or initiator of a communications channel.
This connects to a "listening" socket at the other end of the
communications channel.
Use the SetReadTimeout() function to set a maximum time for the Connect().
@return
true if the channel was successfully connected to the remote host.
*/
virtual PBoolean Connect(
const PString & address ///< Address of remote machine to connect to.
);
/// Flags to reuse of port numbers in Listen() function.
enum Reusability {
CanReuseAddress,
AddressIsExclusive
};
/**Listen on a socket for a remote host on the specified port number. This
may be used for server based applications. A "connecting" socket begins
a connection by initiating a connection to this socket. An active socket
of this type is then used to generate other "accepting" sockets which
establish a two way communications channel with the "connecting" socket.
If the \p port parameter is zero then the port number as
defined by the object instance construction or the descendent classes
SetPort() or SetService() function.
@return
true if the channel was successfully opened.
*/
virtual PBoolean Listen(
unsigned queueSize = 5, ///< Number of pending accepts that may be queued.
WORD port = 0, ///< Port number to use for the connection.
Reusability reuse = AddressIsExclusive ///< Can/Cant listen more than once.
);
/**Open a socket to a remote host on the specified port number. This is an
"accepting" socket. When a "listening" socket has a pending connection
to make, this will accept a connection made by the "connecting" socket
created to establish a link.
The port that the socket uses is the one used in the Listen()
command of the \p socket parameter. Note an error occurs if
the \p socket parameter has not had the Listen()
function called on it.
Note that this function will block until a remote system connects to the
port number specified in the "listening" socket. The time that the
function will block is determined by the read timeout of the
\p socket parameter. This will normally be
PMaxTimeInterval which indicates an infinite time.
The default behaviour is to assert.
@return
true if the channel was successfully opened.
*/
virtual PBoolean Accept(
PSocket & socket ///< Listening socket making the connection.
);
/**Close one or both of the data streams associated with a socket.
@return
true if the shutdown was performed
*/
virtual PBoolean Shutdown(
ShutdownValue option ///< Flag for shutdown of read, write or both.
);
//@}
/**@name Socket options functions */
//@{
/**Set options on the socket. These options are defined as Berkeley socket
options of the class SOL_SOCKET.
@return
true if the option was successfully set.
*/
PBoolean SetOption(
int option, ///< Option to set.
int value, ///< New value for option.
int level = SOL_SOCKET ///< Level for option.
);
/**Set options on the socket. These options are defined as Berkeley socket
options of the class SOL_SOCKET.
@return
true if the option was successfully set.
*/
PBoolean SetOption(
int option, ///< Option to set.
const void * valuePtr, ///< Pointer to new value for option.
PINDEX valueSize, ///< Size of new value.
int level = SOL_SOCKET ///< Level for option.
);
/**Get options on the socket. These options are defined as Berkeley socket
options of the class SOL_SOCKET.
@return
true if the option was successfully retrieved.
*/
PBoolean GetOption(
int option, ///< Option to get.
int & value, ///< Integer to receive value.
int level = SOL_SOCKET ///< Level for option.
);
/**Get options on the socket. These options are defined as Berkeley socket
options of the class SOL_SOCKET.
@return
true if the option was successfully retrieved.
*/
PBoolean GetOption(
int option, ///< Option to get.
void * valuePtr, ///< Pointer to buffer for value.
PINDEX valueSize, ///< Size of buffer to receive value.
int level = SOL_SOCKET ///< Level for option
);
//@}
/**@name Port/Service database functions */
//@{
/**Get the number of the protocol associated with the specified name.
@return
Number of protocol or 0 if the protocol was not found.
*/
static WORD GetProtocolByName(
const PString & name ///< Name of protocol.
);
/**Get the name of the protocol number specified.
@return
Name of protocol or the number if the protocol was not found.
*/
static PString GetNameByProtocol(
WORD proto ///< Number of protocol.
);
/**Get the port number for the specified service name. */
virtual WORD GetPortByService(
const PString & service ///< Name of service to get port number for.
) const;
/**Get the port number for the specified service name.
A name is a unique string contained in a system database. The parameter
here may be either this unique name, an integer value or both separated
by a space (name then integer). In the latter case the integer value is
used if the name cannot be found in the database.
The exact behviour of this function is dependent on whether TCP or UDP
transport is being used. The PTCPSocket and PUDPSocket
classes will implement this function.
The static version of the function is independent of the socket type as
its first parameter may be "tcp" or "udp".
@return
Port number for service name, or 0 if service cannot be found.
*/
static WORD GetPortByService(
const char * protocol, ///< Protocol type for port lookup.
const PString & service ///< Name of service to get port number for.
);
/**Get the service name from the port number. */
virtual PString GetServiceByPort(
WORD port ///< Number for service to find name of.
) const;
/**Get the service name from the port number.
A service name is a unique string contained in a system database. The
parameter here may be either this unique name, an integer value or both
separated by a space (name then integer). In the latter case the
integer value is used if the name cannot be found in the database.
The exact behviour of this function is dependent on whether TCP or UDP
transport is being used. The PTCPSocket and PUDPSocket
classes will implement this function.
The static version of the function is independent of the socket type as
its first parameter may be "tcp" or "udp".
@return
Service name for port number.
*/
static PString GetServiceByPort(
const char * protocol, ///< Protocol type for port lookup
WORD port ///< Number for service to find name of.
);
/**Set the port number for the channel. */
void SetPort(
WORD port ///< New port number for the channel.
);
/**Set the port number for the channel. This a 16 bit number representing
an agreed high level protocol type. The string version looks up a
database of names to find the number for the string name.
A service name is a unique string contained in a system database. The
parameter here may be either this unique name, an integer value or both
separated by a space (name then integer). In the latter case the
integer value is used if the name cannot be found in the database.
The port number may not be changed while the port is open and the
function will assert if an attempt is made to do so.
*/
void SetPort(
const PString & service ///< Service name to describe the port number.
);
/**Get the port the TCP socket channel object instance is using.
@return
Port number.
*/
WORD GetPort() const;
/**Get a service name for the port number the TCP socket channel object
instance is using.
@return
String service name or a string representation of the port number if no
service with that number can be found.
*/
PString GetService() const;
//@}
/**@name Multiple socket selection functions */
//@{
/// List of sockets used for Select() function.
class SelectList : public PSocketList
{
PCLASSINFO(SelectList, PSocketList)
public:
SelectList()
{ DisallowDeleteObjects(); }
/** Add a socket to list .*/
void operator+=(PSocket & sock /** Socket to add. */)
{ Append(&sock); }
/** Remove a socket from list .*/
void operator-=(PSocket & sock /** Socket to remove. */)
{ Remove(&sock); }
};
/**Select a socket with available data. */
static int Select(
PSocket & sock1, ///< First socket to check for readability.
PSocket & sock2 ///< Second socket to check for readability.
);
/**Select a socket with available data. */
static int Select(
PSocket & sock1, ///< First socket to check for readability.
PSocket & sock2, ///< Second socket to check for readability.
const PTimeInterval & timeout ///< Timeout for wait on read/write data.
);
/**Select a socket with available data. */
static Errors Select(
SelectList & read ///< List of sockets to check for readability.
);
/**Select a socket with available data. */
static Errors Select(
SelectList & read, ///< List of sockets to check for readability.
const PTimeInterval & timeout ///< Timeout for wait on read/write data.
);
/**Select a socket with available data. */
static Errors Select(
SelectList & read, ///< List of sockets to check for readability.
SelectList & write ///< List of sockets to check for writability.
);
/**Select a socket with available data. */
static Errors Select(
SelectList & read, ///< List of sockets to check for readability.
SelectList & write, ///< List of sockets to check for writability.
const PTimeInterval & timeout ///< Timeout for wait on read/write data.
);
/**Select a socket with available data. */
static Errors Select(
SelectList & read, ///< List of sockets to check for readability.
SelectList & write, ///< List of sockets to check for writability.
SelectList & except ///< List of sockets to check for exceptions.
);
/**Select a socket with available data. This function will block until the
timeout or data is available to be read or written to the specified
sockets.
The read, write and except lists
are modified by the call so that only the sockets that have data
available are present. If the call timed out then all of these lists
will be empty.
If no timeout is specified then the call will block until a socket
has data available.
@return
true if the select was successful or timed out, false if an error
occurred. If a timeout occurred then the lists returned will be empty.
For the versions taking sockets directly instead of lists the integer
returned is >0 for an error being a value from the PChannel::Errors
enum, 0 for a timeout, -1 for the first socket having read data,
-2 for the second socket and -3 for both.
*/
static Errors Select(
SelectList & read, ///< List of sockets to check for readability.
SelectList & write, ///< List of sockets to check for writability.
SelectList & except, ///< List of sockets to check for exceptions.
const PTimeInterval & timeout ///< Timeout for wait on read/write data.
);
//@}
/**@name Integer conversion functions */
//@{
/// Convert from host to network byte order
inline static WORD Host2Net(WORD v) { return htons(v); }
/// Convert from host to network byte order
inline static DWORD Host2Net(DWORD v) { return htonl(v); }
/// Convert from network to host byte order
inline static WORD Net2Host(WORD v) { return ntohs(v); }
/// Convert from network to host byte order
inline static DWORD Net2Host(DWORD v) { return ntohl(v); }
//@}
protected:
/*This function calls os_socket() with the correct parameters for the
socket protocol type.
*/
virtual PBoolean OpenSocket() = 0;
/**This function returns the protocol name for the socket type.
*/
virtual const char * GetProtocolName() const = 0;
int os_close();
int os_socket(int af, int type, int proto);
PBoolean os_connect(
struct sockaddr * sin,
PINDEX size
);
PBoolean os_recvfrom(
void * buf,
PINDEX len,
int flags,
struct sockaddr * from,
PINDEX * fromlen
);
PBoolean os_sendto(
const void * buf,
PINDEX len,
int flags,
struct sockaddr * to,
PINDEX tolen
);
PBoolean os_accept(
PSocket & listener,
struct sockaddr * addr,
PINDEX * size
);
// Member variables
/// Port to be used by the socket when opening the channel.
WORD port;
#if P_HAS_RECVMSG
PBoolean catchReceiveToAddr;
virtual void SetLastReceiveAddr(void * /*addr*/, int /*addrLen*/)
{ }
#endif
// Include platform dependent part of class
#ifdef _WIN32
#include "msos/ptlib/socket.h"
#else
#include "unix/ptlib/socket.h"
#endif
};
// Utility classes
class P_fd_set {
public:
P_fd_set();
P_fd_set(SOCKET fd);
~P_fd_set()
{
free(set);
}
P_fd_set & operator=(SOCKET fd);
P_fd_set & operator+=(SOCKET fd);
P_fd_set & operator-=(SOCKET fd);
void Zero();
PBoolean IsPresent(SOCKET fd) const
{
return FD_ISSET(fd, set);
}
operator fd_set*() const
{
return set;
}
protected:
void Construct();
SOCKET max_fd;
fd_set * set;
private:
#ifdef __MINGW32__
// avoid compile error when this declaration is private
// this could be a gcc bug
public:
P_fd_set(const P_fd_set &) {}
private:
#else
P_fd_set(const P_fd_set &) {}
#endif
void operator=(const P_fd_set &) {}
};
class P_timeval {
public:
P_timeval();
P_timeval(const PTimeInterval & time)
{
operator=(time);
}
P_timeval & operator=(const PTimeInterval & time);
operator timeval*()
{
return infinite ? NULL : &tval;
}
timeval * operator->()
{
return &tval;
}
timeval & operator*()
{
return tval;
}
private:
struct timeval tval;
PBoolean infinite;
};
#ifdef _WIN32
class PWinSock : public PSocket
{
PCLASSINFO(PWinSock, PSocket)
// Must be one and one only instance of this class, and it must be static!.
public:
PWinSock();
~PWinSock();
private:
virtual PBoolean OpenSocket();
virtual const char * GetProtocolName() const;
};
#endif
#endif // PTLIB_SOCKET_H
// End Of File ///////////////////////////////////////////////////////////////
|