Hi, all:
I wrote a fastcgi program to upload files, i want stop receive and wrote
like this:
while(FCGI_Accept() >= 0)
{
if(filesize) continue;
}
but i found nginx received all stream from brower and then send stream to fastcgi server.
How to immediately respond to browser ? thanks