]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-15-timeout.c
ccan/io: remove conn arg from io_plan constructors.
[ccan] / ccan / io / test / run-15-timeout.c
index b5e0dc3f060b983f75d1cbca24b1e0b56ac4dbef..2f5c60ac7893d79af3787302287c032513e00419 100644 (file)
@@ -15,14 +15,14 @@ struct data {
 };
 
 
-static struct io_op *no_timeout(struct io_conn *conn, struct data *d)
+static struct io_plan no_timeout(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 1);
        d->state++;
        return io_close(conn, d);
 }
 
-static struct io_op *timeout(struct io_conn *conn, struct data *d)
+static struct io_plan timeout(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 1);
        d->state++;
@@ -30,19 +30,19 @@ static struct io_op *timeout(struct io_conn *conn, struct data *d)
        return io_close(conn, d);
 }
 
-static struct io_op *start_ok(struct io_conn *conn, struct data *d)
+static struct io_plan start_ok(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 0);
        d->state++;
        io_timeout(conn, time_from_usec(d->timeout_usec), timeout, d);
-       return io_read(d->buf, sizeof(d->buf), io_next(conn, no_timeout, d));
+       return io_read(d->buf, sizeof(d->buf), no_timeout, d);
 }
 
 static void finish_ok(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 2);
        d->state++;
-       io_break(d, NULL);
+       io_break(d, NULL, NULL);
 }
 
 static int make_listen_fd(const char *port, struct addrinfo **info)