After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 383001 - [PATCH] if using multicast in udpsrc, bind to the multicast address rather than IN_ADDR_ANY
[PATCH] if using multicast in udpsrc, bind to the multicast address rather th...
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Linux
: Normal enhancement
: 0.10.5
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-12-06 13:36 UTC by Rob Taylor
Modified: 2006-12-06 14:33 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch for udpsrc to bind to multicast addresses (1.97 KB, patch)
2006-12-06 13:38 UTC, Rob Taylor
committed Details | Review

Description Rob Taylor 2006-12-06 13:36:50 UTC
If using multicast in udpsrc, bind to the multicast address rather than IN_ADDR_ANY.
This allows the simultanous use of multiple udpsrcs listening on different multicat addresses. Without this all udpsrcs will receive a packets from all subscribed multicast addresses.
Comment 1 Rob Taylor 2006-12-06 13:38:04 UTC
Created attachment 77811 [details] [review]
patch for udpsrc to bind to multicast addresses
Comment 2 Wim Taymans 2006-12-06 14:33:57 UTC
        Patch by: Rob Taylor <robtaylor at floopily dot org>

        * gst/udp/gstudpsrc.c: (gst_udpsrc_start):
        If using multicast in udpsrc, bind to the multicast address rather than
        IN_ADDR_ANY.
        This allows the simultanous use of multiple udpsrcs listening on
        different multicat addresses. Without this all udpsrcs will receive all
        packets from all subscribed multicast addresses.
        Fixes #383001.