Module: SFML::SocketStatus
- Defined in:
- ext/network/network_enums.c,
ext/network/network_enums.c
Overview
Status codes returned by socket send/receive/connect operations.
Constant Summary collapse
- DONE =
The socket has sent or received the data.
INT2NUM(sfSocketDone)
- NOT_READY =
The socket is not ready to send or receive data yet.
INT2NUM(sfSocketNotReady)
- PARTIAL =
The socket sent a part of the data.
INT2NUM(sfSocketPartial)
- DISCONNECTED =
The TCP socket has been disconnected.
INT2NUM(sfSocketDisconnected)
- ERROR =
An unexpected error happened.
INT2NUM(sfSocketError)