Add fastcgi
This commit is contained in:
8
src/fastcgi.c
Normal file
8
src/fastcgi.c
Normal 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
11
src/fastcgi.h
Normal 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
|
@ -14,6 +14,7 @@
|
|||||||
#include "cache.c"
|
#include "cache.c"
|
||||||
#include "http.c"
|
#include "http.c"
|
||||||
#include "client.c"
|
#include "client.c"
|
||||||
|
#include "fastcgi.c"
|
||||||
|
|
||||||
|
|
||||||
int active = 1;
|
int active = 1;
|
||||||
|
Reference in New Issue
Block a user