11 lines
306 B
C
11 lines
306 B
C
#ifndef __PROTO_HANDLERS_WS_H__
|
|
#define __PROTO_HANDLERS_WS_H__
|
|
|
|
#include "wsServer/include/ws.h"
|
|
|
|
void onWsMessage(ws_cli_conn_t client, const unsigned char *msg, uint64_t size, int type);
|
|
void onWsClose(ws_cli_conn_t client);
|
|
void onWsOpen(ws_cli_conn_t client);
|
|
|
|
#endif //ifndef __PROTO_HANDLERS_WS_H__
|