Added anonymous client connections support.
[silc.git] / apps / silcd / serverconfig.h
index fc6c109592c84e13229e7db28f69e0d2245a9385..ef9ce8b75e97378e1d16ac345a141cb7f3c755fa 100644 (file)
@@ -79,18 +79,19 @@ typedef struct SilcServerConfigLoggingStruct {
 /* Connection parameters */
 typedef struct SilcServerConfigConnParams {
   char *name;
+  char *version_protocol;
+  char *version_software;
+  char *version_software_vendor;
   SilcUInt32 connections_max;
   SilcUInt32 connections_max_per_host;
   SilcUInt32 keepalive_secs;
   SilcUInt32 reconnect_count;
   SilcUInt32 reconnect_interval;
   SilcUInt32 reconnect_interval_max;
-  bool reconnect_keep_trying;
   SilcUInt32 key_exchange_rekey;
   bool key_exchange_pfs;
-  char *version_protocol;
-  char *version_software;
-  char *version_software_vendor;
+  bool reconnect_keep_trying;
+  bool anonymous;
   struct SilcServerConfigConnParams *next;
 } SilcServerConfigConnParams;
 
@@ -166,6 +167,7 @@ typedef struct {
   SilcServerConfigConnParams param;
   bool detach_disabled;
   SilcUInt32 detach_timeout;
+  bool logging_timestamp;
   bool logging_quick;
   long logging_flushdelay;
 
@@ -220,6 +222,8 @@ SilcServerConfigServer *
 silc_server_config_find_server_conn(SilcServer server, char *host);
 SilcServerConfigRouter *
 silc_server_config_find_router_conn(SilcServer server, char *host, int port);
+SilcServerConfigRouter *
+silc_server_config_find_backup_conn(SilcServer server, char *host);
 bool silc_server_config_is_primary_route(SilcServer server);
 SilcServerConfigRouter *
 silc_server_config_get_primary_router(SilcServer server);