Restructured includes

This commit is contained in:
2020-12-13 14:12:03 +01:00
parent cc53b43c8a
commit a5919807a3
3 changed files with 15 additions and 15 deletions

View File

@ -5,12 +5,9 @@
* Lorenz Stechauner, 2020-12-03 * Lorenz Stechauner, 2020-12-03
*/ */
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include "necronda-server.h" #include "necronda-server.h"
#include "utils.h" #include "utils.h"
#include "uri.h"
#include "net/http.h" #include "net/http.h"
@ -20,9 +17,12 @@ char *client_addr_str, *client_addr_str_ptr, *server_addr_str, *server_addr_str_
struct timeval client_timeout = {.tv_sec = CLIENT_TIMEOUT, .tv_usec = 0}; struct timeval client_timeout = {.tv_sec = CLIENT_TIMEOUT, .tv_usec = 0};
char *get_webroot(char *http_host) {
}
void client_terminate() { void client_terminate() {
server_keep_alive = 0; server_keep_alive = 0;
// TODO prevent processing of further requests in connection
} }
int client_websocket_handler() { int client_websocket_handler() {

View File

@ -9,17 +9,8 @@
#include "necronda-server.h" #include "necronda-server.h"
#include <stdio.h>
#include <sys/socket.h>
#include <signal.h>
#include <unistd.h>
#include <sys/select.h>
#include <string.h>
#include <errno.h>
#include <arpa/inet.h>
#include <wait.h>
#include "utils.c" #include "utils.c"
#include "uri.c"
#include "net/http.c" #include "net/http.c"
#include "client.c" #include "client.c"

View File

@ -8,6 +8,15 @@
#ifndef NECRONDA_SERVER_NECRONDA_SERVER_H #ifndef NECRONDA_SERVER_NECRONDA_SERVER_H
#define NECRONDA_SERVER_NECRONDA_SERVER_H #define NECRONDA_SERVER_NECRONDA_SERVER_H
#include <stdio.h>
#include <sys/socket.h>
#include <signal.h>
#include <unistd.h>
#include <sys/select.h>
#include <string.h>
#include <errno.h>
#include <arpa/inet.h>
#include <wait.h>
#include <sys/types.h> #include <sys/types.h>
#include <stdio.h> #include <stdio.h>
#include <openssl/err.h> #include <openssl/err.h>