当前位置: 首页 > 工具软件 > FastCGI > 使用案例 >

c fastcgi web

谭繁
2023-12-01

#include "/usr/local/include/fcgi_stdio.h"
#include <string.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
        char *method;


        while(FCGI_Accept() >= 0){
                method = getenv("REQUEST_METHOD");
                printf("Content-Type:text/plain\n\n");
                //printf("hello fastcgi\n");
                printf("%s\n",method);
        }
        return 0;
}


 gcc -o hello hello.c -L/usr/local/lib -lfcgi

spawn-fcgi -a127.0.0.1 -p 9001 -n ./hello
 类似资料:

相关阅读

相关文章

相关问答