2018-07-06 14:11:38 +00:00
|
|
|
#ifndef ENGINE_SHARED_WEBSOCKETS_H
|
|
|
|
#define ENGINE_SHARED_WEBSOCKETS_H
|
2015-02-07 22:15:58 +00:00
|
|
|
|
|
|
|
#if !defined(CONF_FAMILY_UNIX)
|
|
|
|
#error websockets only work on unix, sorry
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
int websocket_create(const char *addr, int port);
|
|
|
|
int websocket_destroy(int socket);
|
|
|
|
int websocket_recv(int socket, unsigned char *data, size_t maxsize, struct sockaddr_in *sockaddrbuf, size_t fromLen);
|
|
|
|
int websocket_send(int socket, const unsigned char *data, size_t size, int port);
|
|
|
|
int websocket_fd_set(int socket, fd_set *set);
|
|
|
|
|
2018-07-06 14:11:38 +00:00
|
|
|
#endif // ENGINE_SHARED_WEBSOCKETS_H
|