]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - dccp_send.c
Rename ->{pre,post}_select methods to ->{pre,post}_monitor.
[paraslash.git] / dccp_send.c
index 5c274237ce33a106c90b3570b000f01572c5ad44..9e9372715c5fac244ed5943d74e3d98089859831 100644 (file)
@@ -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,