]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - udp_send.c
udp_send: Do not send the current chunk if queue is not empty.
[paraslash.git] / udp_send.c
index 70373c99d4fbbd8526837179dd8f24a0c68153e6..49f84acdd156e870d7ec5219e1400dff07aa61d4 100644 (file)
@@ -263,6 +263,7 @@ static int udp_send_fec(struct sender_client *sc, char *buf, size_t len)
        if (!ret) { /* still data left in the queue */
                ret = cq_force_enqueue(sc->cq, buf, len);
                assert(ret >= 0);
+               return 0;
        }
        ret = write_nonblock(sc->fd, buf, len);
        if (ret == -ERRNO_TO_PARA_ERROR(ECONNREFUSED))