From: Perry Lorier Date: Thu, 20 Sep 2001 10:55:14 +0000 (+0000) Subject: Author: Isomer X-Git-Url: http://git.pk910.de/?p=ircu2.10.12-pk.git;a=commitdiff_plain;h=eadc142fbed9032b76cc1f53e0b56e09b509b98d Author: Isomer Log message: Various pull ups from 2.10.10.pl16 Rate limited snotices git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@557 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index 3242387..eb77925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-09-20 Perry Lorier + + * Pullups from 2.10.10.pl16 + * Added some warnings, and the concept of rate limited snotices + 2001-08-31 Kevin L Mitchell * ircd/channel.c: use "%u" to format limit arguments; use diff --git a/include/handlers.h b/include/handlers.h index 2165242..da54d69 100644 --- a/include/handlers.h +++ b/include/handlers.h @@ -162,6 +162,7 @@ extern int mo_uping(struct Client*, struct Client*, int, char*[]); extern int mo_wallops(struct Client*, struct Client*, int, char*[]); extern int mo_wallusers(struct Client*, struct Client*, int, char*[]); extern int mr_error(struct Client*, struct Client*, int, char*[]); +extern int mr_error(struct Client*, struct Client*, int, char*[]); extern int mr_pong(struct Client*, struct Client*, int, char*[]); extern int mr_server(struct Client*, struct Client*, int, char*[]); extern int ms_admin(struct Client*, struct Client*, int, char*[]); diff --git a/include/ircd_defs.h b/include/ircd_defs.h index 6ec4f82..e6ad720 100644 --- a/include/ircd_defs.h +++ b/include/ircd_defs.h @@ -29,6 +29,16 @@ * revision. Every server on a given network must also use the same sizes. */ +/* + * NETWORK is the name the server claims the network is + */ +#define NETWORK "UnderNet" + +/* + * URL_CLIENTS is a URL to where to find compatible clients + */ +#define URL_CLIENTS "ftp://ftp.undernet.org/pub/irc/clients" + /* * NICKLEN is the maximum length allowed for a nickname * diff --git a/include/ircd_policy.h b/include/ircd_policy.h index 4144db4..ea9abca 100644 --- a/include/ircd_policy.h +++ b/include/ircd_policy.h @@ -143,4 +143,9 @@ /* (note, set this to 0 to reenable, not undef */ #define HEAD_IN_SAND_REMOTE 1 +#define HEAD_IN_SAND_SERVERNAME "*.undernet.org" +#define HEAD_IN_SAND_SERVERINFO "The Undernet Underworld" + +#define URL_SERVERS "http://www.undernet.org/servers.php" + #endif /* INCLUDED_ircd_policy_h */