]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/test/run-04-writepartial.c
ccan/io: initialize connection with an explicit I/O plan.
[ccan] / ccan / io / test / run-04-writepartial.c
index 11ac22a7c2fb79c125171fca873f2375f55eb257..12a21ddcd712e08fc793150380f8a8e0fefc17a4 100644 (file)
@@ -12,23 +12,19 @@ struct data {
        char *buf;
 };
 
-static struct io_plan start_ok(struct io_conn *conn, struct data *d)
-{
-       ok1(d->state == 0);
-       d->state++;
-       return io_write_partial(d->buf, &d->bytes, io_close, d);
-}
-
 static void finish_ok(struct io_conn *conn, struct data *d)
 {
        ok1(d->state == 1);
        d->state++;
-       io_break(d, NULL, NULL);
+       io_break(d, io_idle());
 }
 
 static void init_conn(int fd, struct data *d)
 {
-       if (!io_new_conn(fd, start_ok, finish_ok, d))
+       ok1(d->state == 0);
+       d->state++;
+       if (!io_new_conn(fd, io_write_partial(d->buf, &d->bytes, io_close, d),
+                        finish_ok, d))
                abort();
 }