X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-15-timeout.c;h=6f92ec3a634848c0770fcd21016e56acfb082274;hp=0ff3fc8a54a85c207c3552a1fc73528b60069cc6;hb=b85c47bb81a9078afc5ddc51448560187348bbbf;hpb=737705f0c2ec60ea5b51ca55299488d86db37b5d;ds=sidebyside diff --git a/ccan/io/test/run-15-timeout.c b/ccan/io/test/run-15-timeout.c index 0ff3fc8a..6f92ec3a 100644 --- a/ccan/io/test/run-15-timeout.c +++ b/ccan/io/test/run-15-timeout.c @@ -7,6 +7,10 @@ #include #include +#ifndef PORT +#define PORT "65015" +#endif + struct data { int state; int timeout_usec; @@ -19,7 +23,7 @@ static struct io_plan no_timeout(struct io_conn *conn, struct data *d) { ok1(d->state == 1); d->state++; - return io_close(conn, d); + return io_close(); } static struct io_plan timeout(struct io_conn *conn, struct data *d) @@ -27,28 +31,26 @@ static struct io_plan timeout(struct io_conn *conn, struct data *d) ok1(d->state == 1); d->state++; d->timed_out = true; - return io_close(conn, 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), no_timeout, d); + return io_close(); } static void finish_ok(struct io_conn *conn, struct data *d) { ok1(d->state == 2); 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)) - abort(); + struct io_conn *conn; + + ok1(d->state == 0); + d->state++; + + conn = io_new_conn(fd, io_read(d->buf, sizeof(d->buf), no_timeout, d)); + io_set_finish(conn, finish_ok, d); + io_timeout(conn, time_from_usec(d->timeout_usec), timeout, d); } static int make_listen_fd(const char *port, struct addrinfo **info) @@ -95,7 +97,7 @@ int main(void) d->state = 0; d->timed_out = false; d->timeout_usec = 100000; - fd = make_listen_fd("65002", &addrinfo); + fd = make_listen_fd(PORT, &addrinfo); ok1(fd >= 0); l = io_new_listener(fd, init_conn, d); ok1(l);