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;