X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=send_common.c;h=c542e7e62fa52864b9ad8f44520b5dd495900e6a;hp=43aeb2b3b7597d4d5e46dfc51b036c5868d0cda1;hb=e61fefa8429ed4c87098f7a81373a8cf952ee8c7;hpb=2b471378b49c04db7bb84d1e75db981f91ad93db diff --git a/send_common.c b/send_common.c index 43aeb2b3..c542e7e6 100644 --- a/send_common.c +++ b/send_common.c @@ -123,10 +123,9 @@ static int write_nonblock(int fd, const char *buf, size_t len, } static int queue_chunk_or_shutdown(struct sender_client *sc, - struct sender_status *ss, long unsigned chunk_num, - size_t sent) + struct sender_status *ss, const char *buf, size_t num_bytes) { - int ret = cq_enqueue(sc->cq, chunk_num, sent); + int ret = cq_enqueue(sc->cq, buf, num_bytes); if (ret < 0) shutdown_client(sc, ss); return ret; @@ -138,7 +137,7 @@ static int send_queued_chunks(struct sender_client *sc, { struct queued_chunk *qc; while ((qc = cq_peek(sc->cq))) { - char *buf; + const char *buf; size_t len; int ret; cq_get(qc, &buf, &len); @@ -178,7 +177,7 @@ void send_chunk(struct sender_client *sc, struct sender_status *ss, vss_get_header(&header_buf, &header_len); if (header_buf && header_len > 0) { - ret = queue_chunk_or_shutdown(sc, ss, -1U, 0); + ret = queue_chunk_or_shutdown(sc, ss, header_buf, header_len); if (ret < 0) goto out; } @@ -192,7 +191,7 @@ void send_chunk(struct sender_client *sc, struct sender_status *ss, if (!len) goto out; if (!ret) { /* still data left in the queue */ - ret = queue_chunk_or_shutdown(sc, ss, current_chunk, 0); + ret = queue_chunk_or_shutdown(sc, ss, buf, len); goto out; } ret = write_nonblock(sc->fd, buf, len, max_bytes_per_write); @@ -201,7 +200,7 @@ void send_chunk(struct sender_client *sc, struct sender_status *ss, goto out; } if (ret != len) - ret = queue_chunk_or_shutdown(sc, ss, current_chunk, ret); + ret = queue_chunk_or_shutdown(sc, ss, buf + ret, len - ret); out: if (ret < 0) PARA_NOTICE_LOG("%s\n", para_strerror(-ret));