X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=udp_send.c;h=8fca5bc6c2759c27b4e0402cba3e341b60b82ebc;hp=3e3950f90d232794df915e45c39d2e8ad031d44f;hb=b52960c3c1419f0c9198e29425d25eb69bdd3fa4;hpb=f0e41e36c3f1a3a5bb6ff66d92d2814391d8f908 diff --git a/udp_send.c b/udp_send.c index 3e3950f9..8fca5bc6 100644 --- a/udp_send.c +++ b/udp_send.c @@ -1,25 +1,26 @@ /* - * Copyright (C) 2005-2012 Andre Noll + * Copyright (C) 2005-2014 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file udp_send.c Para_server's udp sender. */ - -#include -#include +#include #include +#include +#include #include #include -#include +#include +#include +#include #include "server.cmdline.h" #include "para.h" #include "error.h" #include "string.h" #include "afh.h" -#include "afs.h" #include "server.h" #include "list.h" #include "send.h" @@ -56,7 +57,7 @@ static void udp_close_target(struct sender_client *sc) size_t len = vss_get_fec_eof_packet(&buf); /* - * Ignore the return value of wirte() since we are closing the target + * Ignore the return value of write() since we are closing the target * anyway. The sole purpose of the "do_nothing" statement is to silence * gcc. */ @@ -351,7 +352,7 @@ err: return ret; } -static char *udp_info(void) +static char *udp_status(void) { struct sender_client *sc; char *ret, *tgts = NULL; @@ -367,10 +368,9 @@ static char *udp_info(void) tgts = tmp; } ret = make_message( - "udp sender:\n" - "\tstatus: %s\n" - "\tport: %s\n" - "\ttargets: %s\n", + "status: %s\n" + "port: %s\n" + "targets: %s\n", (sender_status == SENDER_ON)? "on" : "off", stringify_port(conf.udp_default_port_arg, "udp"), tgts? tgts : "(none)" @@ -423,7 +423,7 @@ static char *udp_help(void) void udp_send_init(struct sender *s) { INIT_LIST_HEAD(&targets); - s->info = udp_info; + s->status = udp_status; s->help = udp_help; s->send = NULL; s->pre_select = NULL;