日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > linux >内容正文

linux

linux c ip数据包,如何在Linux上的C / C ++中使用ipv6 udp套接字进行多播?

發布時間:2024/9/19 linux 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 linux c ip数据包,如何在Linux上的C / C ++中使用ipv6 udp套接字进行多播? 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

(英語不是我的母語,不用擔心某些句子是否很奇怪;)。

我正在開發 PONG游戲, 并且通過創建一些類來幫助我管理窗口,事件…和 網絡, 因為我在游戲中添加了 LAN功能

,但是當前您必須輸入您想與之聯系的人的地址。一起玩。解決此問題的方法是 廣播(掃描播放器的LAN)

。對于ipv4來說這很容易,只需使用地址255.255.255.255,但是我們在2017年就提供了僅適用于ipv4的功能。

然后,我尋找一種使用ipv6進行廣播的方法,并且了解了多播,但是這部分讓我迷失了方向。=(

我 在Linux上使用C ++的標準庫中

,發現了幾個不適用于我的多播示例。我目前所做的最好的工作是將udp數據包從該程序的一個實例發送到同一臺計算機上的另一個實例。

如何在C / C ++中的Linux上使用ipv6 udp套接字進行多播?

在Internet上找到的最佳代碼(我對其進行了重新排列)幾乎可以正常工作(客戶端和服務全部合而為一,可以通過在argv上加上1或0來選擇):

int main(int argc, char const *argv[]) {

struct sockaddr_in6 groupSock;

int sd = -1;

char databuf[10];

int datalen = sizeof databuf;

/* Create a datagram socket on which to send/receive. */

if((sd = socket(AF_INET6, SOCK_DGRAM, 0)) < 0) {

perror("Opening datagram socket error");

return 1;

} else {

cout << "Opening the datagram socket...OK." << endl;;

}

/* Enable SO_REUSEADDR to allow multiple instances of this */

/* application to receive copies of the multicast datagrams. */

int reuse = 1;

if(setsockopt(sd, SOL_SOCKET, SO_REUSEADDR, (char *)&reuse, sizeof reuse) < 0) {

perror("Setting SO_REUSEADDR error");

close(sd);

return 1;

} else {

cout << "Setting SO_REUSEADDR...OK." << endl;

}

/* Initialize the group sockaddr structure with a */

memset((char *) &groupSock, 0, sizeof groupSock);

groupSock.sin6_family = AF_INET6;

// address of the group

inet_pton(AF_INET6, "ff0e::/16", &groupSock.sin6_addr);

groupSock.sin6_port = htons(4321);

/* Set local interface for outbound multicast datagrams. */

/* The IP address specified must be associated with a local, */

/* multicast capable interface. */

int ifindex = if_nametoindex ("enp3s0");

cout << "ifindex is " << ifindex << endl;

if(setsockopt(sd, IPPROTO_IPV6, IPV6_MULTICAST_IF, &ifindex, sizeof ifindex)) {

perror("Setting local interface error");

return 1;

} else {

cout << "Setting the local interface...OK" << endl;

}

// choice is 0 for sending and 1 for receiving

int choice;

if (argc < 2) {

cout << "missing argv[1]" << endl;

return 1;

}

sscanf (argv[1], "%d", &choice);

// if sending

if (choice == 0) {

memset(databuf, 'a', datalen);

databuf[sizeof databuf - 1] = '\0';

if (sendto(sd, databuf, datalen, 0, (sockaddr*)&groupSock, sizeof groupSock) < 0) {

cout << "Error in send" << endl;

} else {

cout << "Send okay!" << endl;

}

}

// if receiving

else if (choice == 1) {

groupSock.sin6_addr = in6addr_any;

if(bind(sd, (sockaddr*)&groupSock, sizeof groupSock)) {

perror("Binding datagram socket error");

close(sd);

return 1;

} else {

cout << "Binding datagram socket...OK." << endl;

}

/* Join the multicast group ff0e::/16 on the local */

/* interface. Note that this IP_ADD_MEMBERSHIP option must be */

/* called for each local interface over which the multicast */

/* datagrams are to be received. */

struct ipv6_mreq group;

inet_pton (AF_INET6, "ff0e::", &group.ipv6mr_multiaddr.s6_addr);

group.ipv6mr_interface = ifindex;

if(setsockopt(sd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, (char *)&group, sizeof group) < 0) {

perror("Adding multicast group error");

close(sd);

return 1;

} else {

cout << "Adding multicast group...OK." << endl;

}

if (read(sd, databuf, datalen) < 0) {

perror("Error in read");

} else {

databuf[sizeof databuf - 1] = '\0';// just for safety

cout << "Read Okay" << endl;

cout << "Message is : " << databuf << endl;

}

}

return 0;

}

這里的地址是ff0e ::,但是我嘗試使用ff01 ::和ff02 ::。

我需要幫助,但還沒有找到任何簡單的文檔。預先感謝您的任何答復。

編輯:感謝Ron Maupin和Jeremy Friesner的這些評論,它對我有幫助。

編輯:謝謝杰里米!您的建議是使用ff12 :: blah:blah(…)代替ff0e ::可以!我應該為問題寫答案以關閉線程嗎?

總結

以上是生活随笔為你收集整理的linux c ip数据包,如何在Linux上的C / C ++中使用ipv6 udp套接字进行多播?的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。