X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=ortp_send.c;h=b084bb68ac4b89b3a3921c5d002d00444ba14cb3;hp=dd4ee88409c3155853150c62736c6fa40ee4573c;hb=4ca9b7b4365ee056687c4c9a626beb90452e7997;hpb=786010c598f79d20280e6ea9ea458cad4a7e9af7 diff --git a/ortp_send.c b/ortp_send.c index dd4ee884..b084bb68 100644 --- a/ortp_send.c +++ b/ortp_send.c @@ -87,6 +87,20 @@ static void ortp_send_buf(char *buf, int len, long unsigned chunks_sent) } } +static int set_multicast(RtpSession *s) +{ + unsigned char loop = 1; + int ret; + + ret = setsockopt(s->rtp.socket, + IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); + if (ret < 0) { + PARA_ERROR_LOG("IP_MULTICAST_LOOP error %d\n", ret); + + } + return 1; +} + static void ortp_init_session(struct ortp_target *ot) { RtpSession *s; @@ -108,7 +122,9 @@ static void ortp_init_session(struct ortp_target *ot) if (ret < 0) { rtp_session_destroy(ot->session); ot->session = NULL; + return; } + set_multicast(s); } /* called by afs */