]> code.citadel.org Git - citadel.git/blobdiff - webcit/webserver.c
New global variable 'site_prefix' which replaces the often-repeated code which constr...
[citadel.git] / webcit / webserver.c
index 160844cdf9dc2c253721f485dd423189311344cc..87b83afad5b71d5a5e9987f265e28c6e47d3fb01 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * This contains a simple multithreaded TCP server manager.  It sits around
  * waiting on the specified port for incoming HTTP connections.  When a
  * connection is established, it calls context_loop() from context_loop.c.
@@ -27,6 +25,7 @@ int is_https = 0;             /* Nonzero if I am an HTTPS service */
 int follow_xff = 0;            /* Follow X-Forwarded-For: header */
 int home_specified = 0;                /* did the user specify a homedir? */
 int DisableGzip = 0;
+StrBuf *site_prefix = NULL;
 extern pthread_mutex_t SessionListMutex;
 extern pthread_key_t MyConKey;