X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/61507e3ceb97b0b99e8283ef2573ca738001a930..d6ea854ab50aedf15bda9ad18f46ca80b50582a8:/lib/configuration.h diff --git a/lib/configuration.h b/lib/configuration.h index c5cc2e1..6618e1a 100644 --- a/lib/configuration.h +++ b/lib/configuration.h @@ -102,6 +102,9 @@ struct config { /** @brief All players */ struct stringlistlist player; + /** @brief All tracklength plugins */ + struct stringlistlist tracklength; + /** @brief Allowed users */ struct stringlistlist allow; @@ -240,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;