diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-05-25 20:09:04 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-05-25 20:09:04 +0200 |
commit | 4440a86cfa359b8e40a484a2cd46d33db5455d8a (patch) | |
tree | f5c0c59aebf0058ae97e7ef8b5fb8017f459a05a /support/tkconf.h.dist | |
download | ircd-4440a86cfa359b8e40a484a2cd46d33db5455d8a.tar.gz |
Initial
Diffstat (limited to 'support/tkconf.h.dist')
-rw-r--r-- | support/tkconf.h.dist | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/support/tkconf.h.dist b/support/tkconf.h.dist new file mode 100644 index 0000000..3467564 --- /dev/null +++ b/support/tkconf.h.dist @@ -0,0 +1,35 @@ +/* + * TkServ configuration definitions + * + * Make sure the ircd conf files are located in the server_bin_dir + * (see Makefile) and that USE_SERVICES is #define'd if you intend + * to use this service. + * + */ + +/* This will be shown on ADMIN requests */ +#define TKSERV_ADMIN_NAME "Admin: Someone Somewhere" +#define TKSERV_ADMIN_CONTACT "Mail: i.didnt@edit.my.ADMIN.info" +#define TKSERV_ADMIN_OTHER "SomeAdmin@IRCNet" + +/* This is the name of the service which appears on /servlist */ +#define TKSERV_NAME "TkServ" + +/* The description of the service (appears on /SERVLIST) */ +#define TKSERV_DESC "Temporary K-line Service" + +/* The distribution of the server */ +#define TKSERV_DIST "*" + +/* The password for the service (must match the one in the S: line) */ +#define TKSERV_PASSWORD "blah" + +/* Debugging (displays service<->server traffic to standard output) */ +#undef TKSERV_DEBUG + +/* The name of the ircd config file backup (suffix after CPATH) */ +#define TKSERV_IRCD_CONFIG_BAK CPATH".tkserv" + +/* The name of the ircd temp config file (suffix after CPATH) */ +#define TKSERV_IRCD_CONFIG_TMP CPATH".tmp" + |