]> git.ozlabs.org Git - ccan-lca-2011.git/blobdiff - ccan/oserver/oserver_types.h
lca2011: add dummy max_clients field.
[ccan-lca-2011.git] / ccan / oserver / oserver_types.h
index 72717e89733ddf1793fd514988f7976b8740e4bc..6f7b42b82b581513dc138d62f67dacbae856d36c 100644 (file)
@@ -37,9 +37,13 @@ CDUMP_SAVED struct client {
 };
 
 CDUMP_SAVED struct oserver {
+       unsigned int max_clients;
        /* 5 clients should be enough for anybody! */
        struct client *clients[5];
        int fd;
        struct tevent_fd *fde CDUMP_IGNORE;
+       const char *dumpfile;
+       int argv_len;
+       char **argv CDUMP_LEN(argv_len);
 };
 #endif /* CCAN_OSERVER_TYPES_H */