Author: Isomer <isomer@coders.net>
authorPerry Lorier <isomer@undernet.org>
Thu, 20 Sep 2001 10:55:14 +0000 (10:55 +0000)
committerPerry Lorier <isomer@undernet.org>
Thu, 20 Sep 2001 10:55:14 +0000 (10:55 +0000)
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

ChangeLog
include/handlers.h
include/ircd_defs.h
include/ircd_policy.h

index 32423876f512793b9e4a86a15d47fb96a3d6f08e..eb77925fea7572c8bdbad79e1dcbf9eea8c5a4ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-20  Perry Lorier  <isomer@coders.net>
+
+       * Pullups from 2.10.10.pl16
+       * Added some warnings, and the concept of rate limited snotices
+
 2001-08-31  Kevin L Mitchell  <klmitch@mit.edu>
 
        * ircd/channel.c: use "%u" to format limit arguments; use
index 216524241c39205d1d0e8ea6a7dd09ba125e4ac3..da54d6944f59fd17edb394b04275a073e5ede589 100644 (file)
@@ -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*[]);
index 6ec4f82083c70bbda81fbdb5928b0c4da6e3bbd1..e6ad7202dca607336230964b1b39df79989f1451 100644 (file)
  * 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
  *
index 4144db46b4592c4cd8a450c58bc1ce2245d6862d..ea9abca39b79f56e12250267d198fcf8f1bf649d 100644 (file)
 /* (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 */