Merge worker .h files

This commit is contained in:
2022-12-29 22:00:32 +01:00
parent 5d27cf0398
commit db966b3a66
13 changed files with 35 additions and 95 deletions

24
src/worker/func.h Normal file
View File

@ -0,0 +1,24 @@
/**
* sesimos - secure, simple, modern web server
* @brief Worker function header file
* @file src/worker/func.h
* @author Lorenz Stechauner
* @date 2022-12-29
*/
#ifndef SESIMOS_FUNC_H
#define SESIMOS_FUNC_H
#include "../server.h"
void tcp_acceptor_func(client_ctx_t *ctx);
void tcp_closer_func(client_ctx_t *ctx);
void request_handler_func(client_ctx_t *ctx);
void responder_func(client_ctx_t *ctx);
void fastcgi_handler_func(client_ctx_t *ctx);
#endif //SESIMOS_FUNC_H