- 博客(3)
- 收藏
- 关注
原创 套接字socket编程运用到的函数-作用及用法
1,socket具体的API函数解析 (1) socket :创建一个套接字 #include <sys/types.h> /* See NOTES */ #include <sys/socket.h> int socket(int domain, int type, int protocol); domain: 指定域/协议族 socket接口不仅仅局...
2021-11-01 10:45:33 412
原创 基于socket编程的UDP代码
//udp server 程序#include <sys/types.h> /* See NOTES */#include <sys/socket.h>#include <arpa/inet.h>#include <unistd.h>#include <stdio.h>#include <string.h>int main(){ //1,创建一个套接字 int sockfd = soc...
2021-10-29 18:13:40 155
原创 基于socket编程的TCP代码
//tcp server 程序#include <sys/types.h> /* See NOTES */#include <sys/socket.h>#include <arpa/inet.h>#include <unistd.h>#include <stdio.h>#include <string.h>int main(){ //1,创建一个套接字 int sockfd = soc...
2021-10-29 18:10:42 149
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人