Outsource from request_handler
This commit is contained in:
19
src/worker/ws_frame_handler.c
Normal file
19
src/worker/ws_frame_handler.c
Normal file
@ -0,0 +1,19 @@
|
||||
/**
|
||||
* 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(client_ctx_t *ctx);
|
||||
|
||||
void ws_frame_handler_func(client_ctx_t *ctx) {
|
||||
|
||||
}
|
||||
|
||||
static int ws_frame_handler(client_ctx_t *ctx) {
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user