-
大小: 221KB文件類型: .zip金幣: 2下載: 0 次發(fā)布日期: 2021-06-11
- 語言: 其他
- 標(biāo)簽: mongoose??multithread??httpserver??
資源簡介
1、基于mongoose 6.7實現(xiàn)的http server
2、支持多線程(本項目使用vs2008編譯)
3、附帶mongoose6.7版本源代碼,6.7以上的版本,多線程實現(xiàn)方式與現(xiàn)在不一樣)
2、支持多線程(本項目使用vs2008編譯)
3、附帶mongoose6.7版本源代碼,6.7以上的版本,多線程實現(xiàn)方式與現(xiàn)在不一樣)

代碼片段和文件信息
//?httpserver_multithread.cpp?:?定義控制臺應(yīng)用程序的入口點。
//
#include?“stdafx.h“
#include?“mongoose-6.7/mongoose.h“
static?const?char?*s_http_port?=?“7879“;
static?void?ev_handler(struct?mg_connection?*c?int?ev?void?*p)?{
if?(ev?==?MG_EV_HTTP_REQUEST)?{
struct?http_message?*hm?=?(struct?http_message?*)?p;
char?reply[100];
/*?Simulate?long?calculation?*/
//sleep(3);
/*?Send?the?reply?*/
snprintf(reply?sizeof(reply)?“{?\“uri\“:?\“%.*s\“?}\n“?(int)?hm->uri.len?hm->uri.p);
mg_printf(c?“HTTP/1.1?200?OK\r\n“
“Content-Type:?application/json\r\n“
“Content-Length:?%d\r\n“
“\r\n“
“%s“
(int)?strlen(reply)?reply);
}
}
int?main(void)?{
struct?mg_mgr?mgr;
mg_mgr_init(&mgr?NULL);
struct?mg_connection?*nc?=?mg_bind(&mgr?s_http_port?ev_handler);
mg_set_protocol_http_websocket(nc);
/*?For?each?new?connection?execute?ev_handler?in?a?separate?thread?*/
mg_enable_multithreading(nc);
printf(“starting?multi-threaded?server?on?port?%s\n“?s_http_port);
for?(;;)?{
mg_mgr_poll(&mgr?500);
}
mg_mgr_free(&mgr);
return?0;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-02-14?15:05??httpserver_multithread\
?????目錄???????????0??2019-02-14?15:05??httpserver_multithread\Debug\
?????文件??????202752??2019-02-14?15:04??httpserver_multithread\Debug\httpserver_multithread.exe
?????目錄???????????0??2019-02-14?15:05??httpserver_multithread\httpserver_multithread\
?????文件?????????932??2019-02-14?15:02??httpserver_multithread\httpserver_multithread.sln
?????文件????????8704??2019-02-14?15:04??httpserver_multithread\httpserver_multithread.suo
?????文件????????1092??2019-02-14?15:04??httpserver_multithread\httpserver_multithread\httpserver_multithread.cpp
?????文件????????4413??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\httpserver_multithread.vcproj
?????目錄???????????0??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\mongoose-6.7\
?????文件??????451883??2019-02-14?14:23??httpserver_multithread\httpserver_multithread\mongoose-6.7\mongoose.cpp
?????文件??????171997??2017-01-17?17:08??httpserver_multithread\httpserver_multithread\mongoose-6.7\mongoose.h
?????文件????????1273??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\ReadMe.txt
?????文件?????????227??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\stdafx.cpp
?????文件?????????233??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\stdafx.h
?????文件?????????498??2019-02-14?15:02??httpserver_multithread\httpserver_multithread\targetver.h
評論
共有 條評論