BRL.SocketStream: | Functions | Modinfo | Source |
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. |
Version | 1.05 |
---|---|
Author | Mark Sibly |
License | Blitz Shared Source Code |
Copyright | Blitz Research Ltd |
Modserver | BRL |
History | 1.05 Release |
History | CreateStream port handling fix documented |
History | 1.04 Release |
History | TSocketStream now just wraps a TSocket |