X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-07-break.c;h=d13b0f183609bc8cef34d1992eae0f068358c5be;hb=1d415706a6e948fe6dcc3b5dab45812b297f77a1;hp=cf3d251a7f25e3f871648743f2d5326cb8b71afa;hpb=0a2fd289c7bf57d9fc35ad6af36df4bcc694f361;p=ccan diff --git a/ccan/io/test/run-07-break.c b/ccan/io/test/run-07-break.c index cf3d251a..d13b0f18 100644 --- a/ccan/io/test/run-07-break.c +++ b/ccan/io/test/run-07-break.c @@ -6,29 +6,42 @@ #include #include +#ifdef DEBUG_CONN +#define PORT "64007" +#else +#define PORT "65007" +#endif + struct data { int state; char buf[4]; }; -static struct io_op *do_read(struct io_conn *conn, struct data *d) +static struct io_plan *read_done(struct io_conn *conn, struct data *d) { ok1(d->state == 1); d->state++; - return io_read(d->buf, sizeof(d->buf), io_next(conn, io_close, d)); + return io_close(conn); } -static struct io_op *start_break(struct io_conn *conn, struct data *d) +static void finish_ok(struct io_conn *conn, struct data *d) { - ok1(d->state == 0); + ok1(d->state == 2); d->state++; - return io_break(d, io_next(conn, do_read, d)); } -static void finish_ok(struct io_conn *conn, struct data *d) +static struct io_plan *init_conn(struct io_conn *conn, struct data *d) { - ok1(d->state == 2); +#ifdef DEBUG_CONN + io_set_debug(conn, true); +#endif + ok1(d->state == 0); d->state++; + + io_set_finish(conn, finish_ok, d); + + io_break(d); + return io_read(conn, d->buf, sizeof(d->buf), read_done, d); } static int make_listen_fd(const char *port, struct addrinfo **info) @@ -73,9 +86,9 @@ int main(void) /* This is how many tests you plan to run */ plan_tests(13); d->state = 0; - fd = make_listen_fd("65007", &addrinfo); + fd = make_listen_fd(PORT, &addrinfo); ok1(fd >= 0); - l = io_new_listener(fd, start_break, finish_ok, d); + l = io_new_listener(NULL, fd, init_conn, d); ok1(l); fflush(stdout); if (!fork()) { @@ -99,11 +112,11 @@ int main(void) exit(0); } freeaddrinfo(addrinfo); - ok1(io_loop() == d); + ok1(io_loop(NULL, NULL) == d); ok1(d->state == 1); io_close_listener(l); - ok1(io_loop() == NULL); + ok1(io_loop(NULL, NULL) == NULL); ok1(d->state == 3); ok1(memcmp(d->buf, "hellothere", sizeof(d->buf)) == 0); free(d);