X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=udp_send.c;h=289479878592f6b50e5e31bb30a1098e71588865;hb=be5daec66f163725489f42d512659a8af5c3fd59;hp=52947b20610a6b26280755cf0ddb5125ac5ae8a2;hpb=ac4e01ba1a2f302bf31dd511a7aff8da78660b15;p=paraslash.git diff --git a/udp_send.c b/udp_send.c index 52947b20..28947987 100644 --- a/udp_send.c +++ b/udp_send.c @@ -18,13 +18,13 @@ #include "error.h" #include "string.h" #include "afh.h" +#include "net.h" #include "server.h" #include "list.h" -#include "send.h" #include "sched.h" +#include "send.h" #include "vss.h" #include "portable_io.h" -#include "net.h" #include "fd.h" #include "close_on_fork.h" @@ -56,9 +56,11 @@ static void udp_close_target(struct sender_client *sc) size_t len; struct udp_target *ut = sc->private_data; + if (process_is_command_handler()) + return; if (ut->sent_fec_eof) return; - PARA_NOTICE_LOG("sending FEC EOF\n"); + PARA_INFO_LOG("sending FEC EOF\n"); len = vss_get_fec_eof_packet(&buf); /* Ignore write() errors since we are closing the target anyway. */ if (write(sc->fd, buf, len)) @@ -70,7 +72,8 @@ static void udp_delete_target(struct sender_client *sc, const char *msg) { struct udp_target *ut = sc->private_data; - PARA_NOTICE_LOG("deleting %s (%s) from list\n", sc->name, msg); + if (!process_is_command_handler()) + PARA_NOTICE_LOG("deleting %s (%s) from list\n", sc->name, msg); udp_close_target(sc); /* command handlers already called close_listed_fds() */ if (!process_is_command_handler()) { @@ -246,7 +249,7 @@ static int udp_init_fec(struct sender_client *sc) struct udp_target *ut = sc->private_data; int mps; - PARA_NOTICE_LOG("sending to udp %s\n", sc->name); + PARA_INFO_LOG("sending to udp %s\n", sc->name); ut->sent_fec_eof = false; mps = generic_max_transport_msg_size(sc->fd) - sizeof(struct udphdr); PARA_INFO_LOG("current MPS = %d bytes\n", mps); @@ -323,8 +326,8 @@ static int udp_com_add(struct sender_command_data *scd) sc->name); return -E_TARGET_EXISTS; } - ut = para_calloc(sizeof(*ut)); - sc = para_calloc(sizeof(*sc)); + ut = zalloc(sizeof(*ut)); + sc = zalloc(sizeof(*sc)); ut->fcp.slices_per_group = scd->slices_per_group; ut->fcp.data_slices_per_group = scd->data_slices_per_group; ut->fcp.init_fec = udp_init_fec; @@ -392,7 +395,7 @@ static void udp_init_target_list(void) struct sender_command_data scd; int i; - INIT_LIST_HEAD(&targets); + init_list_head(&targets); for (i = 0; i < OPT_GIVEN(UDP_TARGET); i++) { const char *arg = lls_string_val(i, OPT_RESULT(UDP_TARGET)); if (udp_resolve_target(arg, &scd) < 0) @@ -425,7 +428,7 @@ static char *udp_help(void) /* Initialize the list of udp targets. */ static void udp_send_init(void) { - INIT_LIST_HEAD(&targets); + init_list_head(&targets); sender_status = SENDER_off; udp_init_target_list(); if (!OPT_GIVEN(UDP_NO_AUTOSTART))