Commit 1b89bcdd authored by Martin Storsjö's avatar Martin Storsjö

udp: Clarify the comment about binding the multicast address

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 113d3e10
......@@ -380,7 +380,9 @@ static int udp_open(URLContext *h, const char *uri, int flags)
goto fail;
}
/* if multicast, try the multicast address bind first */
/* If multicast, try binding the multicast address first, to avoid
* receiving UDP packets from other sources aimed at the same UDP
* port. This fails on windows. */
if (s->is_multicast && (h->flags & AVIO_FLAG_READ)) {
bind_ret = bind(udp_fd,(struct sockaddr *)&s->dest_addr, len);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment