gpt4 book ai didi

c - FCGX_Accept_r 在 C 上的简单 FastCGI 应用程序中运行两次

转载 作者:行者123 更新时间:2023-12-04 00:15:06 25 4
gpt4 key购买 nike

我正在尝试创建用 C 编写的简单 FastCGI 应用程序:

#include <fcgiapp.h>
#include <stdio.h>
int main()
{
int sockfd = FCGX_OpenSocket("127.0.0.1:9000", 1024);
FCGX_Request request;

FCGX_Init();
FCGX_InitRequest(&request, sockfd, 0);

while (FCGX_Accept_r(&request) == 0)
{
printf("Accepted\n");
FCGX_FPrintF(request.out, "Content-type: text/html\r\n\r\n<h1>Hello World!</h1>");
FCGX_Finish_r(&request);
}
}

它工作正常 - 当我从浏览器调用它时,它显示带有“Hello World!”的页面消息。

问题是“while”中的代码工作两次,即我在终端中看到以下输出:

[root@localhost example]$ ./hello 
Accepted
Accepted

为什么每个请求都打印两次“已接受”?如果我把真正的代码放在这里,例如查询一个数据库,它也会被执行两次。

最佳答案

您使用什么程序来发出网络请求?一些网络客户端也可能会请求例如favicon.ico 文件,这可能是对 fcgi 进程的第二次请求:

127.0.0.1 - - [29/Aug/2015:16:02:11 +0000] "GET / HTTP/1.1" 200 32 "-" "..."
127.0.0.1 - - [29/Aug/2015:16:02:11 +0000] "GET /favicon.ico HTTP/1.1" 200 32 "http://127.0.0.1/" "..."

这可以通过检查网络服务器日志或向 C 程序添加调试以显示请求参数来确定。仅使用 telnet 请求 GET/HTTP/1.0,我没有看到使用 nginx< 的 forward-everything-to-fcgi 网络服务器配置的双重命中 网络服务器。

关于c - FCGX_Accept_r 在 C 上的简单 FastCGI 应用程序中运行两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32287344/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com