BRL.SocketStream: | Functions | Source |
CreateSocketStream | Create a socket stream |
SocketStreamSocket | Get underlying socket from a socket stream |
Function CreateSocketStream:TSocketStream( socket:TSocket,autoClose=True ) | |
Returns | A new socket stream |
Description | Create a socket stream |
Information |
A socket stream allows you to treat a socket as if it were a stream.
If autoClose is true, socket will be automatically closed when the socket stream is closed. Otherwise, it is up to you to somehow close socket at a later time. |
Function SocketStreamSocket:TSocket( stream:TSocketStream ) | |
Returns | The socket used to create the socket stream |
Description | Get underlying socket from a socket stream |