我正在开发一个简单的基于 Moongose 的 Web 服务器,以通过 HTTP 发送作为参数传递的文件,无论请求是什么,但在每个请求上,我都会收到堆栈溢出错误。
这是我的代码:
#include <stdio.h>
#include <string.h>
#include "mongoose.h"
// file path
char *path;
static void *callback(enum mg_event event, struct mg_connection *conn)
{
const struct mg_request_info *request_info = mg_get_request_info(conn);
mg_send_file(conn, path);
return "";
}
int main(int argc,char *argv[])
{
struct mg_context *ctx;
const char *options[] = {"listening_ports", "8081", NULL};
// registers file
path = argv[1];
ctx = mg_start(&callback, NULL, options);
printf("%s", path);
getchar(); // Wait until user hits "enter"
mg_stop(ctx);
return 0;
}
我正在使用 Visual Studio 2010 来构建项目
有谁知道可能导致此错误的原因?