X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=http_recv.c;h=80f0b1686496ce5fe4011d84e8a2d5e9e436264e;hp=c19facf70a39b1503deaea28008fc4b7a8b73f97;hb=9c00a79ed817c854ed10ee6bd1b908df8dc13a2f;hpb=58ce610c5a46eb03810d8a93b10d5bc51bc10b12 diff --git a/http_recv.c b/http_recv.c index c19facf7..80f0b168 100644 --- a/http_recv.c +++ b/http_recv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2012 Andre Noll + * Copyright (C) 2005-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -15,12 +15,12 @@ #include "list.h" #include "sched.h" #include "ggo.h" +#include "buffer_tree.h" #include "recv.h" #include "http_recv.cmdline.h" #include "net.h" #include "string.h" #include "fd.h" -#include "buffer_tree.h" /** * the possible states of a http receiver node @@ -60,7 +60,6 @@ static void http_recv_pre_select(struct sched *s, struct task *t) struct receiver_node *rn = container_of(t, struct receiver_node, task); struct private_http_recv_data *phd = rn->private_data; - t->error = 0; if (generic_recv_pre_select(s, t) <= 0) return; if (phd->status == HTTP_CONNECTED) @@ -74,7 +73,7 @@ static void http_recv_pre_select(struct sched *s, struct task *t) * area with data read from the socket. In any case, update the state of the * connection if necessary. */ -static void http_recv_post_select(struct sched *s, struct task *t) +static int http_recv_post_select(struct sched *s, struct task *t) { struct receiver_node *rn = container_of(t, struct receiver_node, task); struct private_http_recv_data *phd = rn->private_data; @@ -90,11 +89,11 @@ static void http_recv_post_select(struct sched *s, struct task *t) if (ret < 0) goto out; if (ret == 0) - return; + return 0; if (phd->status == HTTP_CONNECTED) { char *rq; if (!FD_ISSET(rn->fd, &s->wfds)) - return; + return 0; rq = make_request_msg(); PARA_INFO_LOG("sending http request\n"); ret = write_va_buffer(rn->fd, "%s", rq); @@ -102,17 +101,17 @@ static void http_recv_post_select(struct sched *s, struct task *t) if (ret < 0) goto out; phd->status = HTTP_SENT_GET_REQUEST; - return; + return 0; } if (phd->status == HTTP_SENT_GET_REQUEST) { ret = read_pattern(rn->fd, HTTP_OK_MSG, strlen(HTTP_OK_MSG), &s->rfds); if (ret < 0) goto out; if (ret == 0) - return; + return 0; PARA_INFO_LOG("received ok msg, streaming\n"); phd->status = HTTP_STREAMING; - return; + return 0; } ret = -E_HTTP_RECV_OVERRUN; iovcnt = btr_pool_get_buffers(rn->btrp, iov); @@ -128,10 +127,9 @@ static void http_recv_post_select(struct sched *s, struct task *t) btr_add_output_pool(rn->btrp, num_bytes - iov[0].iov_len, btrn); } out: - if (ret >= 0) - return; - btr_remove_node(&rn->btrn); - t->error = ret; + if (ret < 0) + btr_remove_node(&rn->btrn); + return ret; } static void http_recv_close(struct receiver_node *rn) @@ -194,7 +192,8 @@ void http_recv_init(struct receiver *r) r->open = http_recv_open; r->close = http_recv_close; r->pre_select = http_recv_pre_select; - r->post_select = http_recv_post_select; + r->post_select = NULL; + r->new_post_select = http_recv_post_select; r->parse_config = http_recv_parse_config; r->free_config = http_recv_free_config; r->help = (struct ggo_help) {