生成基於C语言的udp組播通信服務器代碼
时间: 2023-11-12 21:09:17 浏览: 74
好的,为您生成基于C语言的udp组播通信服务器代码:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <unistd.h>
#include <errno.h>
#define PORT 5001
#define MULTICAST_IP "239.0.0.1"
int main(void) {
// 创建UDP套接字
int sock;
if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
perror("socket() failed");
exit(1);
}
// 设置多播套接字选项
struct in_addr localInterface;
localInterface.s_addr = inet_addr("127.0.0.1");
if (setsockopt(sock, IPPROTO_IP, IP_MULTICAST_IF, (char *)&localInterface, sizeof(localInterface)) < 0) {
perror("setsockopt() failed");
close(sock);
exit(1);
}
// 设置多播组地址
struct sockaddr_in multicastAddr;
multicastAddr.sin_family = AF_INET;
multicastAddr.sin_port = htons(PORT);
multicastAddr.sin_addr.s_addr = inet_addr(MULTICAST_IP);
// 发送数据
char *message = "Hello, multicast world!";
if (sendto(sock, message, strlen(message), 0, (struct sockaddr *)&multicastAddr, sizeof(multicastAddr)) != strlen(message)) {
perror("sendto() failed");
close(sock);
exit(1);
}
// 关闭套接字
close(sock);
return 0;
}
```
以上代码实现了向多播组地址发送一条消息。您可以将代码编译成可执行文件并运行,观察结果。
阅读全文