multisocketsink: Fix handling of partial writes and WOULD_BLOCK errors

This commit is contained in:
Sebastian Dröge 2013-07-28 13:52:28 +02:00
parent 692fd81ac7
commit b12cd5432a

View file

@ -750,18 +750,21 @@ gst_multi_socket_sink_handle_client_write (GstMultiSocketSink * sink,
/* hmm error.. */ /* hmm error.. */
if (g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CLOSED)) { if (g_error_matches (err, G_IO_ERROR, G_IO_ERROR_CLOSED)) {
goto connection_reset; goto connection_reset;
} else if (g_error_matches (err, G_IO_ERROR, G_IO_ERROR_WOULD_BLOCK)) {
/* write would block, try again later */
GST_LOG_OBJECT (sink, "write would block %p",
mhclient->handle.socket);
more = FALSE;
} else { } else {
goto write_error; goto write_error;
} }
} else { } else {
if (wrote < maxsize) { if (wrote < maxsize) {
/* partial write means that the client cannot read more and we should /* partial write, try again now */
* stop sending more */
GST_LOG_OBJECT (sink, GST_LOG_OBJECT (sink,
"partial write on %p of %" G_GSSIZE_FORMAT " bytes", "partial write on %p of %" G_GSSIZE_FORMAT " bytes",
mhclient->handle.socket, wrote); mhclient->handle.socket, wrote);
mhclient->bufoffset += wrote; mhclient->bufoffset += wrote;
more = FALSE;
} else { } else {
/* complete buffer was written, we can proceed to the next one */ /* complete buffer was written, we can proceed to the next one */
mhclient->sending = g_slist_remove (mhclient->sending, head); mhclient->sending = g_slist_remove (mhclient->sending, head);