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 113174 - updsink sends only 1024 bytes an throws the rest away
updsink sends only 1024 bytes an throws the rest away
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gst-plugins
0.6.1
Other Linux
: Normal normal
: 0.6.x
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2003-05-17 09:44 UTC by Jürgen Haverkamp
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Jürgen Haverkamp 2003-05-17 09:44:19 UTC
In the udpsink.c file in line 286 is a for-statement (quoted), which 
should send the hole buffer to the other peer, replace by a sigle send 
which only sends the first 1024 bytes an throws the rest away.
Comment 1 Zeeshan Ali 2003-07-19 01:34:21 UTC
If you look carefully at it then you'll come to know that its not the
case. The commented out code sends the buffer in chunks according to
the MTU defined whereas that one line code sends the whole of it in a
single UDP packet. Bye