pkgsrc/www/wslay/PLIST
adam 67c7f5c083 Wslay is a WebSocket library written in C. It implements the protocol version
13 described in RFC 6455. This library offers 2 levels of API: event-based API
and frame-based low-level API. For event-based API, it is suitable for
non-blocking reactor pattern style. You can set callbacks in various events.
For frame-based API, you can send WebSocket frame directly. Wslay only supports
data transfer part of WebSocket protocol and does not perform opening handshake
in HTTP.

Wslay supports:
* Text/Binary messages.
* Automatic ping reply.
* Callback interface.
* External event loop.

Wslay does not perform any I/O operations for its own. Instead, it
offers callbacks for them. This makes Wslay independent on any I/O
frameworks, SSL, sockets, etc.  This makes Wslay protable across
various platforms and the application authors can choose freely I/O
frameworks.
2016-04-23 18:32:09 +00:00

29 lines
1.1 KiB
Text

@comment $NetBSD: PLIST,v 1.1 2016/04/23 18:32:09 adam Exp $
include/wslay/wslay.h
include/wslay/wslayver.h
lib/libwslay.la
lib/pkgconfig/libwslay.pc
man/man3/wslay_event_config_set_callbacks.3
man/man3/wslay_event_config_set_max_recv_msg_length.3
man/man3/wslay_event_config_set_no_buffering.3
man/man3/wslay_event_context_client_init.3
man/man3/wslay_event_context_free.3
man/man3/wslay_event_context_server_init.3
man/man3/wslay_event_get_close_received.3
man/man3/wslay_event_get_close_sent.3
man/man3/wslay_event_get_queued_msg_count.3
man/man3/wslay_event_get_queued_msg_length.3
man/man3/wslay_event_get_read_enabled.3
man/man3/wslay_event_get_status_code_received.3
man/man3/wslay_event_get_status_code_sent.3
man/man3/wslay_event_get_write_enabled.3
man/man3/wslay_event_queue_close.3
man/man3/wslay_event_queue_fragmented_msg.3
man/man3/wslay_event_queue_msg.3
man/man3/wslay_event_recv.3
man/man3/wslay_event_send.3
man/man3/wslay_event_set_error.3
man/man3/wslay_event_shutdown_read.3
man/man3/wslay_event_shutdown_write.3
man/man3/wslay_event_want_read.3
man/man3/wslay_event_want_write.3