Add fastcgi

This commit is contained in:
2020-12-26 21:13:18 +01:00
parent d88c70c978
commit 1429961e44
3 changed files with 20 additions and 0 deletions

8
src/fastcgi.c Normal file
View File

@ -0,0 +1,8 @@
/**
* Necronda Web Server
* FastCGI implementation
* src/fastcgi.c
* Lorenz Stechauner, 2020-12-26
*/
#include "fastcgi.h"

11
src/fastcgi.h Normal file
View File

@ -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

View File

@ -14,6 +14,7 @@
#include "cache.c"
#include "http.c"
#include "client.c"
#include "fastcgi.c"
int active = 1;