X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=onak-conf.h;h=3f4a797c9bcd183b64a8270c54bc778c4c2499e4;hb=8b782f377eff7672249d66423d3ca792574931e2;hp=dde73205257f62b65433e018bbfd1be7d5601e47;hpb=e02c731dfbb288c736f2cd09a9b6df0507c59ddd;p=onak.git diff --git a/onak-conf.h b/onak-conf.h index dde7320..3f4a797 100644 --- a/onak-conf.h +++ b/onak-conf.h @@ -4,21 +4,26 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: onak-conf.h,v 1.10 2003/06/08 21:18:43 noodles Exp $ */ #ifndef __ONAK_CONF_H_ #define __ONAK_CONF_H_ -#define VERSION "0.0.3" +#define VERSION "0.2.0" +#define CONFIGFILE "/home/noodles/projects/onak/onak.conf" /* * struct onak_config - Runtime configuration for onak. * @maxkeys: The maximum number of keys a query should return. + * @thissite: Our email address that servers sync with. + * @adminemail: The email address of the server admin. + * @mta: The mta to invoke to send sync mails. + * @syncsites: A linked list of sites we sync with. * - * @db2_dbpath: The path to the directory containing the db2 files. + * @db_dir: The path to the directory containing the database files. * - * @file_dbpath: The path to the flat file DB directory. - * * @pg_dbhost: The host that Postgres is running on. * @pg_dbname: The database name. * @pg_dbuser: The user we should connect as. @@ -28,17 +33,21 @@ * will eventually be populated from the config file. */ struct onak_config { - int maxkeys; - /* - * Options for the db2 file backend. + * Generic options. */ - char *db2_dbpath; + int maxkeys; + char *thissite; + char *adminemail; + char *mta; + struct ll *syncsites; + char *logfile; /* - * Options for the file backend. + * Options for any database backend that needs a directory, be it the + * file, db2 or db3 options. */ - char *file_dbpath; + char *db_dir; /* * Options for the Postgres backend. @@ -54,4 +63,14 @@ struct onak_config { */ extern struct onak_config config; +/* + * readconfig - read the onak config. + */ +void readconfig(void); + +/* + * cleanupconfig - clean up the config when we're shutting down. + */ +void cleanupconfig(void); + #endif /* __ONAK_CONF_H_ */