Claw 1.7.0
|
Win32 interface for using sockets. More...
#include <socket_traits_win32.hpp>
Public Types | |
typedef SOCKET | descriptor |
Type of the system description of the socket. | |
Static Public Member Functions | |
static bool | init () |
Initialize the use of the socket library. | |
static bool | release () |
Close the socket library. | |
static descriptor | open () |
Open a socket. | |
static bool | close (descriptor d) |
Close a socket. | |
static bool | connect (descriptor d, const std::string &address, int port) |
Connect a socket to a port. | |
static bool | listen (descriptor d, int port, unsigned int queue_size) |
Open a socket for incoming connexions. | |
static bool | select_read (descriptor d, int time_limit=-1) |
Select a socket for reading. | |
static descriptor | accept (descriptor d) |
Accept an incoming connexion. | |
static bool | valid_descriptor (descriptor d) |
Tell if a descriptor is a valid socket descriptor. | |
static bool | is_open (descriptor d) |
Tell if a descriptor is a opened socket. | |
Static Public Attributes | |
static const descriptor | invalid_socket = INVALID_SOCKET |
Invalid socket descriptor. |
Win32 interface for using sockets.
Definition at line 46 of file socket_traits_win32.hpp.
static descriptor claw::socket_traits_win32::accept | ( | descriptor | d | ) | [inline, static] |
Accept an incoming connexion.
d | The descriptor of the socket to listen. |
Definition at line 203 of file socket_traits_win32.hpp.
static bool claw::socket_traits_win32::close | ( | descriptor | d | ) | [inline, static] |
Close a socket.
d | The descriptor of the socket to close. |
Definition at line 102 of file socket_traits_win32.hpp.
static bool claw::socket_traits_win32::connect | ( | descriptor | d, |
const std::string & | address, | ||
int | port | ||
) | [inline, static] |
Connect a socket to a port.
d | The descriptor of the socket to connect. |
address | The adress to connect to. |
port | The port to connect to. |
Definition at line 115 of file socket_traits_win32.hpp.
References CLAW_PRECOND, and invalid_socket.
static bool claw::socket_traits_win32::init | ( | ) | [inline, static] |
Initialize the use of the socket library.
Definition at line 62 of file socket_traits_win32.hpp.
static bool claw::socket_traits_win32::is_open | ( | descriptor | d | ) | [inline, static] |
Tell if a descriptor is a opened socket.
d | The descriptor to test. |
Definition at line 223 of file socket_traits_win32.hpp.
References valid_descriptor().
static bool claw::socket_traits_win32::listen | ( | descriptor | d, |
int | port, | ||
unsigned int | queue_size | ||
) | [inline, static] |
Open a socket for incoming connexions.
d | The descriptor of the socket to open. |
port | The port to connect to. |
queue_size | The size of the queue for incoming connexions. |
Definition at line 146 of file socket_traits_win32.hpp.
References CLAW_PRECOND, and invalid_socket.
static descriptor claw::socket_traits_win32::open | ( | ) | [inline, static] |
Open a socket.
Definition at line 87 of file socket_traits_win32.hpp.
References invalid_socket.
static bool claw::socket_traits_win32::release | ( | ) | [inline, static] |
Close the socket library.
Definition at line 77 of file socket_traits_win32.hpp.
static bool claw::socket_traits_win32::select_read | ( | descriptor | d, |
int | time_limit = -1 |
||
) | [inline, static] |
Select a socket for reading.
d | The descriptor of the socket to read. |
time_limit | Maximum of seconds to wait before considering there's nothing to read. If time_limit is negative, the method wait until there is something to read. |
Definition at line 172 of file socket_traits_win32.hpp.
References CLAW_PRECOND, and invalid_socket.
static bool claw::socket_traits_win32::valid_descriptor | ( | descriptor | d | ) | [inline, static] |
Tell if a descriptor is a valid socket descriptor.
d | The descriptor to test. |
Definition at line 213 of file socket_traits_win32.hpp.
References invalid_socket.
Referenced by is_open().