[問題] IPv6 Multicating 撰寫

debian 開發版,這個版面主要是要討論 debian@taiwan or debian@chinese 相關開發議題,所謂開發如 debian 中文化問題、文件製作維護問題、程式開發問題...最終目的是能從這個版面的討論成立一個接一個的工作小組來幫助 debian@taiwan or debian@chinese 發展,讓 taiwan 或華人能更方便的使用 debian。

[問題] IPv6 Multicating 撰寫

文章privatewind » 週三 11月 18, 2009 8:11 pm

大家好,
小弟最近在寫一隻IPv6 Multicasting 的程式
於網路上,找到一隻由 Richard Stevens 所撰寫的範例程式
執行後卻出現"Bind error: invalid argument"錯誤訊息,特來請教大家

平台: Ubuntu 8.04 LTS
網頁: http://www.kohala.com/start/unpv12e.html
下載: http://www.kohala.com/start/unpv12e/unpv12e.tar.gz
編譯好檔案 : http://www.megafileupload.com/en/file/1 ... drecv.html

當我照著README步驟去MAKE成功後(有一個地方必須修改,因為Redefinition)
再去make ./mcast的程式 產生了sendrecv程式檔

當我執行./sendrecv ff02::1 100 時
就出現了 "Bind error : invalid argument"

請問怎麼修改呢?
我目前推測是recvfd 的問題,但是不知道該如何修改,懇請賜教

程式碼(main.c,篇幅問題,只貼main.c)
代碼: 選擇全部
int
main(int argc, char **argv)
{
        int sendfd, recvfd;
        const int on = 1;
        socklen_t salen;
        struct sockaddr *sasend, *sarecv;

        if (argc != 3)
                err_quit("usage: sendrecv <IP-multicast-address> <port#>");

        sendfd = Udp_client(argv[1], argv[2], (void **) &sasend, &salen);

        recvfd = Socket(sasend->sa_family, SOCK_DGRAM, 0);

        Setsockopt(recvfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));

        sarecv = Malloc(salen);
        memcpy(sarecv, sasend, salen);
        Bind(recvfd, sarecv, salen);

        Mcast_join(recvfd, sasend, salen, NULL, 0);
        Mcast_set_loop(sendfd, 0);

        if (Fork() == 0)
                recv_all(recvfd, salen);                /* child -> receives */

        send_all(sendfd, sasend, salen);        /* parent -> sends */
}

privatewind
可愛的小學生
可愛的小學生
 
文章: 1
註冊時間: 週三 11月 18, 2009 8:08 pm

回到 debian develop

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客