chiark / gitweb /
disable LC_COLLATE for shell globbing
[disorder] / lib / configuration.h
index 4ef7862071aa0479222899ab2be7313bc5ce6fd9..02c953a83fca8e8a7bc99a701b41074440fa76f9 100644 (file)
@@ -243,9 +243,15 @@ struct config {
   /** @brief TTL for multicast packets */
   long multicast_ttl;
 
+  /** @brief Whether to loop back multicast packets */
+  int multicast_loop;
+  
   /* derived values: */
   int nparts;                          /* number of distinct name parts */
   char **parts;                                /* name part list  */
+
+  /* undocumented, for testing only */
+  long dbversion;
 };
 
 extern struct config *config;
@@ -271,6 +277,7 @@ char *config_private(void);
 /* get the private config file */
 
 extern char *configfile;
+extern int config_per_user;
 
 #endif /* CONFIGURATION_H */