点赞+关注,功德无量。更多配套资料,欢迎私信。
网盘链接:百度网盘 请输入提取码
WebServer编程:
--------------------------------------
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <pthread.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
void *Client_Process(void *arg)
{
char recvbuf[2048] = ""; // 接收缓冲区
char httpbuf[200]="";
char http_path[200]="";
int fd,send_num=0;
char buf_send[1024]="";
char head[]="HTTP/1.1 200 OK\r\n"\
"Content-Type: text/html\r\n"\
"\r\n";
char err[]= "HTTP/1.1 404 Not Found\r\n" \
"Content