HTTP Server (VC)

qwertynxg 47 0 RAR 2018-12-19 18:12:04

HTTP Server 用VC实现 .

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

先收藏这,不知道咋样。用用再说

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

不错,有参考价值

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

挺实用的代码

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

0. 界面做得很好,代码也写的比较清晰易懂,实现了http服务器一小部分功能。 启动服务后,可以通过浏览器访问 localhost/index.html 这种网页。不错。 1. httpmt.c的第314行要加上 if (strcmp(buf,"") == 0) { SendError(lpReq, nRet); CloseConnection(lpReq); free(lpReq); DecrementClientCount(); return 0; } 不然在调试时,地址栏输入localhost/index.html会崩溃。 (可能是调试阶

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

不错,封装得还好

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

server代码可以用来做参考。

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

VC6实现的Http Server,可以作为文件传递服务器。本人初学HttpServer,帮助大

Generic placeholder image 卡了网匿名网友 2018-12-19 18:12:04

很经典,可以参考做个文件文件服务器 ,谢谢!