我正在開發一個簡單的基於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來構建項目
有沒有人有什麼可能導致此錯誤的任何想法?
順便說一句,你是否將該程序編譯爲C或C++程序?請保留其中一個語言標籤並刪除其他語言標籤。 –
@Rob抱歉,這只是一個簡單的C程序,在Visual Studio 2010下編譯,我刪除了錯誤的標籤 – Ben