]> git.ozlabs.org Git - ccan/blobdiff - ccan/io/backend.h
ccan/io: remove next & finish from union.
[ccan] / ccan / io / backend.h
index 3c5b3f8b781bb38ab014fee995b9272ad4164c28..bc88c289b7bf412d8d12d46497e1f375616a8e72 100644 (file)
@@ -8,18 +8,17 @@ struct fd {
        int fd;
        bool listener;
        size_t backend_info;
-
-       struct io_plan *(*next)(struct io_conn *, void *arg);
-       void *next_arg;
-
-       void (*finish)(struct io_conn *, void *arg);
-       void *finish_arg;
 };
 
 
 /* Listeners create connections. */
 struct io_listener {
        struct fd fd;
+
+       /* These are for connections we create. */
+       struct io_plan *(*next)(struct io_conn *, void *arg);
+       void (*finish)(struct io_conn *, void *arg);
+       void *conn_arg;
 };
 
 enum io_state {
@@ -74,9 +73,16 @@ struct io_timeout {
 struct io_conn {
        struct fd fd;
 
+       struct io_plan *(*next)(struct io_conn *, void *arg);
+       void *next_arg;
+
+       void (*finish)(struct io_conn *, void *arg);
+       void *finish_arg;
+
        struct io_conn *duplex;
        struct io_timeout *timeout;
 
+       int pollflag; /* 0, POLLIN or POLLOUT */
        enum io_state state;
        union {
                struct io_state_read read;