X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=dccp_send.c;h=855780e6cd6a691be9dbaf1200e2c40f8fda3872;hp=e838b3d87f23a64faa7eb4829f38c2dbcac7cf1c;hb=ccf42979a31a56e991b5c6d7d4043381f7487d6e;hpb=cb4aab8e0b3998352780612faa56250eb2971b2b diff --git a/dccp_send.c b/dccp_send.c index e838b3d8..855780e6 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -50,8 +50,8 @@ struct dccp_client { int header_sent; }; -static void dccp_pre_select(__a_unused struct audio_format *af, int *max_fileno, fd_set *rfds, - __a_unused fd_set *wfds) +static void dccp_pre_select(__a_unused struct audio_format_handler *af, + int *max_fileno, fd_set *rfds, __a_unused fd_set *wfds) { if (listen_fd < 0) return; @@ -59,8 +59,8 @@ static void dccp_pre_select(__a_unused struct audio_format *af, int *max_fileno, *max_fileno = PARA_MAX(*max_fileno, listen_fd); } -static void dccp_post_select(__a_unused struct audio_format *af, fd_set *rfds, - __a_unused fd_set *wfds) +static void dccp_post_select(__a_unused struct audio_format_handler *af, + fd_set *rfds, __a_unused fd_set *wfds) { struct dccp_client *dc; int ret; @@ -133,7 +133,7 @@ err_out: return -E_DCCP_WRITE; } -static void dccp_send(__a_unused struct audio_format *af, +static void dccp_send(__a_unused struct audio_format_handler *af, long unsigned current_chunk, __a_unused long unsigned chunks_sent, const char *buf, size_t len) {