Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 483 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 483 Bytes

简易http服务器--标准C实现

此代码不是我写的,来自网络,仅供学习参考 一个标准C实现的http服务器,目前只能处理简单的get请求,在ubuntu+gcc编译通过

编译演示: 把这两个文件放在同一个文件夹下,

1.linux下gcc编译: gcc httpserver.c -o httpserver

2.运行 ./httpserver

3.浏览器地址栏输入: 127.0.0.1:8080/one.html

image