Defined in header file: hzIpServer.h
Client status
Enum definition:
enum hzCliStatus
{
| CLIENT_STATE_NONE | Client is created in this state | ||
| CLIENT_INITIALIZED | Client accepted but no data in as yet | ||
| CLIENT_HELLO | Client has been sent a hello | ||
| CLIENT_READING | Client can read | ||
| CLIENT_READ_WHOLE | A whole message has been read (may be more to come) | ||
| CLIENT_HANGUP | An epoll HANGUP condition has been detected | ||
| CLIENT_TERMINATION | The client has sent a 0-byte formal termination packet | ||
| CLIENT_WRITING | A response has been formulated and is in the process of being sent to the client | ||
| CLIENT_WRITE_WHOLE | The response has been written to the clinet | ||
| CLIENT_BAD | Server has deemed the client to be bad and will not send a response | ||
| CLIENT_SSL_ACCEPTED | Client has an initialized and accepted SSL session |
} ;