* ooooops
authorArt Cancro <ajc@citadel.org>
Mon, 6 Dec 1999 02:09:16 +0000 (02:09 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 6 Dec 1999 02:09:16 +0000 (02:09 +0000)
webcit/messages.c
webcit/tcp_sockets.c
webcit/webcit.c

index e93b507291fa20dfe364d79ecd9e96b0e216332e..f1779a19d74c2137ae4b8240f9308989f7204cab 100644 (file)
@@ -27,7 +27,7 @@
 
 
 
-char reply_to[512];
+char reply_to[512];    /* FIX make these session-specific!!! */
 long msgarr[1024];
 
 /*
index 50a9b299efb607ddf6c2c3da583ed2a0bc776d74..8aa0508674d4873e325be5de6e06e08477452cde 100644 (file)
 #include <signal.h>
 #include "webcit.h"
 
-
-
-
-
-char server_is_local = 0;
-
 #ifndef INADDR_NONE
 #define INADDR_NONE 0xffffffff
 #endif
 
-extern int errno;
-
 RETSIGTYPE timeout(int signum)
 {
        fprintf(stderr, "Connection timed out.\n");
index 03e9a9d1b1714fa4c99f6c08332db62bfd9ba0a9..f24e5b34931a476e709bcff07b6f49e5c2bed045 100644 (file)
 
 
 
-char *ExpressMessages = NULL;
+char *ExpressMessages = NULL;  /* FIX move to session context */
 
 /* This variable is set to 1 if the room banner and menubar have been
  * displayed, and we need to close the <TABLE> tags.
  */
-int fake_frames = 0;
+int fake_frames = 0;   /* FIX move to session context */
 
 struct urlcontent *urlstrings = NULL;