]> code.citadel.org Git - citadel.git/commitdiff
* Added master sockets fd_set (not yet implemented)
authorArt Cancro <ajc@citadel.org>
Wed, 8 Dec 1999 18:34:22 +0000 (18:34 +0000)
committerArt Cancro <ajc@citadel.org>
Wed, 8 Dec 1999 18:34:22 +0000 (18:34 +0000)
citadel/sysdep.c

index ec8a69bccc9bbfe8bb545ce091fcf5a3b5d945d3..0ff46ba270d974dc6365919398c6a354f3420a76 100644 (file)
@@ -73,6 +73,15 @@ time_t last_purge = 0;                               /* Last dead session purge */
 int num_threads = 0;                           /* Current number of threads */
 int num_sessions = 0;                          /* Current number of sessions */
 
+/*
+ * This fd_set will be loaded up with all the master sockets, so we can
+ * quickly copy it into a working fd_set every time we need it.
+ */
+fd_set masterfds;
+int masterhighest;
+
+
+
 /*
  * lprintf()  ...   Write logging information
  */