You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
334 B
C

#ifndef WEBSOCKET_H
#define WEBSOCKET_H
#include <stdlib.h>
struct http_client;
struct cmd;
enum ws_read_action {
WS_READ_FAIL,
WS_READ_MORE,
WS_READ_EXEC};
int
ws_handshake_reply(struct http_client *c);
enum ws_read_action
ws_add_data(struct http_client *c);
int
ws_reply(struct cmd *cmd, const char *p, size_t sz);
#endif