X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fio%2Ftest%2Frun-14-duplex-both-read.c;h=ac334e7837be7d057e307b5e4aa1caa0f453878e;hp=8cf22aa16cfc6a5febe0fef0e4c2342dcb190340;hb=318f717e34e4735e5397bee24dbbee69205be82b;hpb=94dd4c2bddd0dc080ad5b85465fa3f45f486967a diff --git a/ccan/io/test/run-14-duplex-both-read.c b/ccan/io/test/run-14-duplex-both-read.c index 8cf22aa1..ac334e78 100644 --- a/ccan/io/test/run-14-duplex-both-read.c +++ b/ccan/io/test/run-14-duplex-both-read.c @@ -8,7 +8,9 @@ #include #include -#ifndef PORT +#ifdef DEBUG_CONN +#define PORT "64014" +#else #define PORT "65014" #endif @@ -37,12 +39,16 @@ static struct io_plan *make_duplex(struct io_conn *conn, struct data *d) { d->state++; /* Have duplex read the rest of the buffer. */ - return io_duplex(io_read(conn, d->buf+1, sizeof(d->buf)-1, end, d), + return io_duplex(conn, + io_read(conn, d->buf+1, sizeof(d->buf)-1, end, d), io_write(conn, d->wbuf, sizeof(d->wbuf), end, d)); } static struct io_plan *init_conn(struct io_conn *conn, struct data *d) { +#ifdef DEBUG_CONN + io_set_debug(conn, true); +#endif ok1(d->state == 0); d->state++;