20 lines
351 B
C
20 lines
351 B
C
/**
|
|
* sesimos - secure, simple, modern web server
|
|
* @brief WebSocket frame handler
|
|
* @file src/worker/ws_frame_handler.c
|
|
* @author Lorenz Stechauner
|
|
* @date 2022-12-30
|
|
*/
|
|
|
|
#include "func.h"
|
|
|
|
static int ws_frame_handler(ws_ctx_t *ctx);
|
|
|
|
void ws_frame_handler_func(ws_ctx_t *ctx) {
|
|
|
|
}
|
|
|
|
static int ws_frame_handler(ws_ctx_t *ctx) {
|
|
return 0;
|
|
}
|