Refactored for version 4

This commit is contained in:
2020-12-09 19:21:57 +01:00
parent e68e0239c3
commit d104a43d1b
29 changed files with 81 additions and 3107 deletions

25
src/client.c Normal file
View File

@ -0,0 +1,25 @@
/**
* Necronda Web Server
* Client connection and request handlers
* src/client.c
* Lorenz Stechauner, 2020-12-03
*/
#include "utils.h"
#include "net/http.h"
int websocket_handler() {
// TODO implement websocket_handler
return 0;
}
int request_handler() {
// TODO implement request_handler
return 0;
}
int connection_handler() {
// TODO implement connection_handler
return 0;
}