GNOME Bugzilla – Bug 113174
updsink sends only 1024 bytes an throws the rest away
Last modified: 2004-12-22 21:47:04 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.
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