在C应用中嵌入http服务器libmicrohttp

下载安装libmicrohttp

编译example中的fileserver_example.c

gcc -g fileserver.c /root/microhttpd/lib/libmicrohttpd.a -I/root/microhttpd/include -pthread -lgnutls -o fileserver

这样直接编译会有几个头文件找不到,把源码中的头文件拷进来:platform.h,plibc.h,MHD_config.h

你可能感兴趣的:(c,HTTP服务器)