WSLAY_EVENT_QUEUE_CLOSE(3) wslay WSLAY_EVENT_QUEUE_CLOSE(3)

wslay_event_queue_close - Queue a close control frame

#include <wslay/wslay.h>

wslay_event_queue_close() queues close control frame. This function is provided just for convenience. wslay_event_queue_msg() can queue a close control frame as well. status_code is the status code of close control frame. reason is the close reason encoded in UTF-8. reason_length is the length of reason in bytes. reason_length must be less than 123 bytes.

If status_code is 0, reason and reason_length is not used and close control frame with zero-length payload will be queued.

This function just queues a message and does not send it. wslay_event_send() function call sends these queued messages.

wslay_event_queue_close() returns 0 if it succeeds, or returns the following negative error codes:

Could not queue given message. The one of possible reason is that close control frame has been queued/sent and no further queueing message is not allowed.
The given message is invalid.
Out of memory.

wslay_event_queue_msg(), wslay_event_queue_fragmented_msg()

Tatsuhiro Tsujikawa

2012, 2015, Tatsuhiro Tsujikawa

June 20, 2020 1.1.1