mirror of
https://github.com/lammertb/libhttp.git
synced 2025-08-16 11:21:57 +03:00
25 lines
533 B
C
25 lines
533 B
C
|
|
#ifndef WEBSOCKCALLBACKS_H_INCLUDED
|
|
#define WEBSOCKCALLBACKS_H_INCLUDED
|
|
|
|
#include "civetweb.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void websock_init_lib(void);
|
|
void websock_exit_lib(void);
|
|
|
|
void websock_send_broadcast(const char * data, int data_len);
|
|
|
|
void websocket_ready_handler(struct mg_connection *conn);
|
|
int websocket_data_handler(struct mg_connection *conn, int flags, char *data, size_t data_len);
|
|
void connection_close_handler(struct mg_connection *conn);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |