|
| __init__ () |
|
bool | GetIncomingConnection (SocketTCP newsession, SocketAddress address) |
|
bool | OpenForListen (const SocketAddress Inaddess, int backlog_size) |
| Function name : OpenForListen This function will initialize a listening Socket. More...
|
|
Public Member Functions inherited from SocketIP |
| __init__ () |
| Function name : Socket_IP::Socket_IP Def Constructor. More...
|
|
| __init__ (SOCKET in) |
| Function name : Socket_IP::SetSocket Assigns an existing socket to this class. More...
|
|
bool | Active () |
| Function name : Socket_IP::Active Ask if the socket is open (allocated) More...
|
|
| Close () |
| Function name : Socket_IP::Close closes a socket if it is open (allocated) More...
|
|
SocketAddress | GetPeerName () |
| Function name : Socket_IP::GetPeerName Wrapper on berkly getpeername... More...
|
|
SOCKET | GetSocket () |
| Function name : Socket_IP::GetSocket Gets the base socket type. More...
|
|
SOCKET | GetSocket () |
| Function name : Socket_IP::GetSocket Get The RAW file id of the socket. More...
|
|
int | SetBlocking () |
| Function name : Socket_IP::SetBlocking Set the socket to block on subsequent calls to socket functions that address this socket. More...
|
|
int | SetNonBlocking () |
| Function name : SetNonBlocking this function will throw a socket into non-blocking mode. More...
|
|
int | SetRecvBufferSize (int size) |
| Function name : Socket_IP::SetRecvBufferSize Ok it sets the recv buffer size for both tcp and UDP. More...
|
|
bool | SetReuseAddress (bool flag) |
| Function name : SetReuseAddress Informs a socket to reuse IP address as needed. More...
|
|
| SetSocket (SOCKET ins) |
| Function name : Socket_IP::SetSocket Assigns an existing socket to this class. More...
|
|
Public Member Functions inherited from TypedObject |
TypeHandle | getType () |
| Derived classes should override this function to return get_class_type(). More...
|
|
int | getTypeIndex () |
| Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. This is equivalent to get_type().get_index(). More...
|
|
bool | isExactType (TypeHandle handle) |
| Returns true if the current object is the indicated type exactly. More...
|
|
bool | isOfType (TypeHandle handle) |
| Returns true if the current object is or derives from the indicated type. More...
|
|
Base functionality for a TCP rendezvous socket.