From 1429961e44566a01a31adb9560e710264467e644 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Sat, 26 Dec 2020 21:13:18 +0100 Subject: [PATCH] Add fastcgi --- src/fastcgi.c | 8 ++++++++ src/fastcgi.h | 11 +++++++++++ src/necronda-server.c | 1 + 3 files changed, 20 insertions(+) create mode 100644 src/fastcgi.c create mode 100644 src/fastcgi.h diff --git a/src/fastcgi.c b/src/fastcgi.c new file mode 100644 index 0000000..b6e0cfa --- /dev/null +++ b/src/fastcgi.c @@ -0,0 +1,8 @@ +/** + * Necronda Web Server + * FastCGI implementation + * src/fastcgi.c + * Lorenz Stechauner, 2020-12-26 + */ + +#include "fastcgi.h" diff --git a/src/fastcgi.h b/src/fastcgi.h new file mode 100644 index 0000000..6f81f1f --- /dev/null +++ b/src/fastcgi.h @@ -0,0 +1,11 @@ +/** + * Necronda Web Server + * FastCGI implementation (header file) + * src/fastcgi.h + * Lorenz Stechauner, 2020-12-26 + */ + +#ifndef NECRONDA_SERVER_FASTCGI_H +#define NECRONDA_SERVER_FASTCGI_H + +#endif //NECRONDA_SERVER_FASTCGI_H diff --git a/src/necronda-server.c b/src/necronda-server.c index 3fa6db1..55ddcaf 100644 --- a/src/necronda-server.c +++ b/src/necronda-server.c @@ -14,6 +14,7 @@ #include "cache.c" #include "http.c" #include "client.c" +#include "fastcgi.c" int active = 1;