X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=dccp_send.c;h=9e9372715c5fac244ed5943d74e3d98089859831;hb=e3a7e12639c34fd86d48a072beb48add8c498d09;hp=5c274237ce33a106c90b3570b000f01572c5ad44;hpb=742c8b3f79a59278ced71e1855da1846b157b494;p=paraslash.git diff --git a/dccp_send.c b/dccp_send.c index 5c274237..9e937271 100644 --- a/dccp_send.c +++ b/dccp_send.c @@ -36,7 +36,7 @@ struct dccp_fec_client { struct fec_client *fc; }; -static void dccp_pre_select(struct sched *s) +static void dccp_pre_monitor(struct sched *s) { unsigned n; @@ -118,7 +118,7 @@ static void dccp_send_fec(struct sender_client *sc, char *buf, size_t len) dccp_shutdown_client(sc); } -static void dccp_post_select(__a_unused struct sched *s) +static void dccp_post_monitor(__a_unused struct sched *s) { struct sender_client *sc; struct dccp_fec_client *dfc; @@ -248,8 +248,8 @@ const struct sender dccp_sender = { .name = "dccp", .init = dccp_send_init, .shutdown = dccp_shutdown, - .pre_select = dccp_pre_select, - .post_select = dccp_post_select, + .pre_monitor = dccp_pre_monitor, + .post_monitor = dccp_post_monitor, .shutdown_clients = dccp_shutdown_clients, .client_cmds = { [SENDER_on] = dccp_com_on,