fcgi2 icon indicating copy to clipboard operation
fcgi2 copied to clipboard

FastCGI.com fcgi2 Development Kit fork from http://repo.or.cz/fcgi2.git + last snapshot

Results 25 fcgi2 issues
Sort by recently updated
recently updated
newest added

Initialization of the library could not be done without creating a request on the standard input. This can be a problem if the program has disabled the standard input (a...

Using Microsoft's vcpkg, you can easily compile code under windows, linux, osx, just use vcpkg install fastcgi: x64-windows In order to make it compile, I modified the libfcgi.mak file to...

Hello when,produce configue use by autoconf,when compile fcgi. I found configue have -G flag,This Maybe cause link error ,unsatisfied symbol _mcount error. How can i close -G flag when proudce...

1、fcgiapp.c, need use C++ compile。 2、os_win32.c need c compile. But,when other lib link fcgi.lib,I get some errors: function in fcgios.h can,t be found. I guss, may be compiled win32.c wthis...

Add possibility for abstract socket address, so that socket will not exist on filesystem. In order to create abstract socket address simply use name that will start with `*`. `*tmp/sock`...

To match fwrite the ptr in FCGI_fwrite should be const.

The size of the parameter buffer is set fixed to 8KB, see https://github.com/FastCGI-Archives/fcgi2/blob/856ac8362affcc5e1aaafe587db9a56c89fc4c83/cgi-fcgi/cgi-fcgi.c#L814 Using more then ~8KB of parameters will cause malformed requests. In our case we were sending around...

Hi! I looked source [https://opensource.apple.com/source/FastCGI/FastCGI-4/fcgi/doc/FCGI_Finish.3.auto.html](url) Please, explain what will happen in program if I don't care about important FCGI_Finish call on every FCGI_Accept loop?

`#include #include #include #include #include int main(void) { int count = 1; while(FCGI_Accept() >= 0) { char *contentLength = getenv("CONTENT_LENGTH"); int len; if (contentLength != NULL) { len = strtol(contentLength,...