1234567891011121314151617181920212223242526272829303132333435 |
- .. _func_network_socketaccept:
- ============
- SocketAccept
- ============
- SocketAccept -
- Description
- ===========
- .. code-block:: blitzmax
- SocketAccept:TSocket( socket:TSocket,timeout=0 )
- Accept new connections on a listening socket
- The specified socket must be a TCP socket, and must be listening.
- Parameters
- ==========
- Return Values
- =============
- A new socket, or Null if no connection was made in the specified timeout
- Examples
- ========
- See Also
- ========
|