TCP/IP网络编程
网络编程
云玩家养乐多
你所热爱的,总有一天会来拥抱你!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
linux 基础版tcp server、client(可直接编译)
linux 基础版tcp server、client(可直接编译)原创 2022-06-13 16:20:13 · 570 阅读 · 0 评论 -
linux 基础版udp server、client(可直接编译)
linux 基础版udp server、client(可直接编译)原创 2022-06-13 15:56:19 · 518 阅读 · 0 评论 -
UDP服务器和客户端的编写(原创)(linux系统)
服务器:server #include<stdio.h> #include<stdlib.h> #include<pthread.h> #include<string.h> #include<sys/socket.h> #include <sys/epoll.h> #include <arpa/inet.h> #define DEFAULT_HEADBEAT_PORT 7090 #define RECV_BUF_SIZE原创 2021-09-28 15:51:21 · 223 阅读 · 0 评论 -
TCP服务器和客户端的编写(原创)(linux系统)
服务器: #include <stdio.h> #include <sys/types.h> #include <sys/socket.h> #include <unistd.h> #include <ctype.h> #include <netinet/in.h> #include <arpa/inet.h> ...原创 2021-09-28 15:43:50 · 644 阅读 · 0 评论
分享