X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=udp_send.c;h=1155bcb4f107da7a71ce869d5f381644b231a626;hp=880d7957dbd4430819c917cb4b6a9533c96d321c;hb=65b6448b8eb6f7442ba64affff58c388306a9159;hpb=ef1f130a1f9ac61a51da10ee56c5bd9ef1b52366 diff --git a/udp_send.c b/udp_send.c index 880d7957..1155bcb4 100644 --- a/udp_send.c +++ b/udp_send.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2005-2011 Andre Noll + * Copyright (C) 2005-2012 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -13,7 +13,6 @@ #include #include #include -#include #include "server.cmdline.h" #include "para.h" @@ -278,14 +277,14 @@ static int udp_check_socket_state(struct sender_client *sc) return -ERRNO_TO_PARA_ERROR(ret); } -static int udp_send_fec(struct sender_client *sc, char *buf, size_t len) +static void udp_send_fec(struct sender_client *sc, char *buf, size_t len) { int ret; if (sender_status == SENDER_OFF) - return 0; + return; if (len == 0) - return 0; + return; ret = udp_check_socket_state(sc); if (ret < 0) goto fail; @@ -299,10 +298,9 @@ static int udp_send_fec(struct sender_client *sc, char *buf, size_t len) } if (ret < 0) goto fail; - return 1; + return; fail: udp_delete_target(sc, para_strerror(-ret)); - return ret; } static int udp_com_add(struct sender_command_data *scd)