X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-12-bidir.c;h=1ab0a218d02a200e7918a079966d7eda941cd4c6;hp=3e769beb19920f0b3ae61cfdf1880d56f9a2bba1;hb=641b511049e5c03d45ada0c3fd829691b173e5d1;hpb=7a8a585c32d1010426f587a6933f05de7a06dfd0 diff --git a/ccan/io/test/run-12-bidir.c b/ccan/io/test/run-12-bidir.c index 3e769beb..1ab0a218 100644 --- a/ccan/io/test/run-12-bidir.c +++ b/ccan/io/test/run-12-bidir.c @@ -6,6 +6,10 @@ #include #include +#ifndef PORT +#define PORT "65012" +#endif + struct data { struct io_listener *l; int state; @@ -18,22 +22,28 @@ static void finish_ok(struct io_conn *conn, struct data *d) d->state++; } -static struct io_plan *write_out(struct io_conn *conn, struct data *d) +static struct io_plan write_done(struct io_conn *conn, struct data *d) { d->state++; - return io_write(d->wbuf, sizeof(d->wbuf), io_next(conn, io_close, d)); + return io_close(); } -static struct io_plan *start_ok(struct io_conn *conn, struct data *d) +static void init_conn(int fd, struct data *d) { + struct io_conn *conn; + ok1(d->state == 0); d->state++; io_close_listener(d->l); memset(d->wbuf, 7, sizeof(d->wbuf)); - ok1(io_duplex(conn, write_out, finish_ok, d)); - return io_read(d->buf, sizeof(d->buf), io_next(conn, io_close, d)); + + conn = io_new_conn(fd, io_read(d->buf, sizeof(d->buf), io_close_cb, d)); + io_set_finish(conn, finish_ok, d); + conn = io_duplex(conn, io_write(d->wbuf, sizeof(d->wbuf), write_done, d)); + ok1(conn); + io_set_finish(conn, finish_ok, d); } static int make_listen_fd(const char *port, struct addrinfo **info) @@ -77,9 +87,9 @@ int main(void) /* This is how many tests you plan to run */ plan_tests(10); d->state = 0; - fd = make_listen_fd("65012", &addrinfo); + fd = make_listen_fd(PORT, &addrinfo); ok1(fd >= 0); - d->l = io_new_listener(fd, start_ok, finish_ok, d); + d->l = io_new_listener(fd, init_conn, d); ok1(d->l); fflush(stdout); if (!fork()) {