X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=recv.c;h=1fb5e25e700ea6bb6b2975fef7d6a34523b8cd9f;hp=8e6d75b1c8b6fe3a1fa9d6865e9d3c71eb0e5843;hb=23b121a85984baa9252f4b4c0b8c4f186e394bb7;hpb=d7b4aa3835197ee906f13f515040e1cda6385544 diff --git a/recv.c b/recv.c index 8e6d75b1..1fb5e25e 100644 --- a/recv.c +++ b/recv.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2011 Andre Noll + * Copyright (C) 2005-2013 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -8,19 +8,24 @@ #include #include -#include #include "para.h" #include "list.h" #include "sched.h" #include "ggo.h" +#include "buffer_tree.h" #include "recv.h" #include "recv.cmdline.h" #include "fd.h" #include "string.h" #include "error.h" #include "stdout.h" -#include "buffer_tree.h" +#include "version.h" + +extern void afh_recv_init(struct receiver *r); +#undef AFH_RECEIVER +#define AFH_RECEIVER {.name = "afh", .init = afh_recv_init}, +DEFINE_RECEIVER_ARRAY; /** The gengetopt args info struct. */ static struct recv_args_info conf; @@ -101,21 +106,22 @@ int main(int argc, char *argv[]) sot.btrn = btr_new_node(&(struct btr_node_description) EMBRACE(.parent = rn.btrn, .name = "stdout")); stdout_set_defaults(&sot); - register_task(&sot.task); + register_task(&s, &sot.task); rn.task.pre_select = r->pre_select; rn.task.post_select = r->post_select; sprintf(rn.task.status, "%s", r->name); - register_task(&rn.task); + register_task(&s, &rn.task); ret = schedule(&s); out: if (r_opened) r->close(&rn); - btr_free_node(rn.btrn); - btr_free_node(sot.btrn); + btr_remove_node(&rn.btrn); + btr_remove_node(&sot.btrn); if (rn.conf) r->free_config(rn.conf); + if (ret < 0) PARA_ERROR_LOG("%s\n", para_strerror(-ret)); return ret < 0? EXIT_FAILURE : EXIT_SUCCESS;