嵌入式培训机构四个月实训课程笔记(完整版)-Linux网络编程第二天-tcp编程练习(物联技术666)

发布时间:2024年01月12日

点赞+关注,功德无量。更多配套资料,欢迎私信。
网盘链接:百度网盘 请输入提取码
 

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

文章来源:https://blog.csdn.net/vx349014857/article/details/135543238
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。