当前位置:网站首页 > 技术博客 > 正文

linux udp client

包括服务器端和接收端 包含注释 经过测试可正常编译运行

#include

#include

#include

#include

#include

#include

#include

#include

#define MYPORT 3490 //设定端口为3490

#define BACKLOG 10

main()

{

int sockfd,new_fd;

struct sockaddr_in my_addr; //服务器

网络

地址结构体

struct sockaddr_in their_addr; //客户端

网络

地址结构体

int sin_size;

if((sockfd=

socket

(AF_INET,SOCK_STREAM,0))==-1)

{ perror("

socket

");

exit(1); }

my_addr.sin_family=AF_INET; //设置为IP

通信

my_addr.sin_port=htons(MYPORT); //服务器端口号

my_addr.sin_addr.s_addr=INADDR_ANY; //服务器IP地址--允许连接到所有本地地址上

bzero(&(my_addr.sin_zero),8); //置零

………………………………

版权声明


相关文章:

  • 基于神经网络的时间序列预测2024-11-10 14:30:01
  • whilescanf!=EOF2024-11-10 14:30:01
  • stm32 usb驱动开发2024-11-10 14:30:01
  • 路由交换相关知识2024-11-10 14:30:01
  • 结构体指针typedef2024-11-10 14:30:01
  • linux中user是什么意思2024-11-10 14:30:01
  • c++bitset头文件2024-11-10 14:30:01
  • fastjson教程2024-11-10 14:30:01
  • 霍夫圆检测算法2024-11-10 14:30:01
  • python做预测模型2024-11-10 14:30:01