- 论坛徽章:
- 0
|
小弟是新手,请假各位大侠,问题如题,代码如下:
以下的代码是向一个客户端发送UDP包,那如果向多个客户端发送UDP包呢,比如我要向192.168.1.1-192.168.1.3这三个IP发送UDP包,要怎样改,谢谢!
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/wait.h>
#define MYPORT 4950 /* the port users will be sending to */
int main(int argc, char *argv[])
{
int sockfd;
struct sockaddr_in their_addr;
struct hostent *he;
int numbytes;
char *msg="hello world";
if ((he=gethostbyname(argv[1])) == NULL) {
herror("gethostbyname" ;
exit(1);
}
sockfd = socket(AF_INET, SOCK_DGRAM, 0);
their_addr.sin_family = AF_INET;
their_addr.sin_port = htons(MYPORT);
their_addr.sin_addr = *((struct in_addr *)he->h_addr);
bzero(&(their_addr.sin_zero), ;
sendto(sockfd, msg, strlen(msg), 0, (struct sockaddr *)&their_addr, sizeof(struct sockaddr));
close(sockfd);
return 0;
} |
|