Outsource from request_handler

This commit is contained in:
2022-12-30 16:48:48 +01:00
parent 204317f46a
commit 28d7cf68df
7 changed files with 103 additions and 45 deletions

View 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;
}