]> jfr.im git - irc/quakenet/snircd-patchqueue.git/commitdiff
autosethost: changed using spoof block privilege to NOTICE AUTH to avoid sending...
authorwiebe <redacted>
Thu, 18 Mar 2010 09:54:39 +0000 (10:54 +0100)
committerwiebe <redacted>
Thu, 18 Mar 2010 09:54:39 +0000 (10:54 +0100)
autosethost.patch

index 5192489e6117166efe70d1694f596bf4a4d49a67..9b9c1bd86acabb187c8e06a1328f92acb73f107a 100644 (file)
@@ -1,49 +1,59 @@
 when autoapplying spoof blocks notify user what their hidden host is (same as /sethost or +rx)
 update numeric reply to reflect new conf format, blocks instead of lines
 
-diff -r 6eb88b2e3b90 ircd/s_conf.c
---- a/ircd/s_conf.c    Wed Mar 17 17:18:13 2010 +0100
-+++ b/ircd/s_conf.c    Wed Mar 17 17:40:43 2010 +0100
-@@ -1270,8 +1270,11 @@
+diff -r b03d03214a42 ircd/s_conf.c
+--- a/ircd/s_conf.c    Thu Mar 18 09:57:00 2010 +0100
++++ b/ircd/s_conf.c    Thu Mar 18 10:45:13 2010 +0100
+@@ -1270,8 +1270,9 @@
          continue;
  
        ircd_strncpy(cli_user(cptr)->host, hostonly, HOSTLEN);
 -      log_write(LS_USER, L_INFO, LOG_NOSNOTICE, "S-Line (%s@%s) by (%#R)",
 +      log_write(LS_USER, L_INFO, LOG_NOSNOTICE, "Spoofhost (%s@%s) by (%#R)",
            cli_user(cptr)->username, hostonly, cptr);
-+      send_reply(cptr, RPL_USINGSLINE);
-+      send_reply(cptr, RPL_HOSTHIDDEN, cli_user(cptr)->host);
 +      SetSetHost(cptr);
        return 1;
      }
    }
-diff -r 6eb88b2e3b90 ircd/s_err.c
---- a/ircd/s_err.c     Wed Mar 17 17:18:13 2010 +0100
-+++ b/ircd/s_err.c     Wed Mar 17 17:40:43 2010 +0100
+diff -r b03d03214a42 ircd/s_err.c
+--- a/ircd/s_err.c     Thu Mar 18 09:57:00 2010 +0100
++++ b/ircd/s_err.c     Thu Mar 18 10:45:13 2010 +0100
 @@ -830,7 +830,7 @@
  /* 398 */
    { RPL_STATSSLINE, "%d %s %s %s %s", "398" },
  /* 399 */
 -  { RPL_USINGSLINE, ":Using S-line privilege", "399" },
-+  { RPL_USINGSLINE, ":Using Spoof block privilege", "399" },
++  { 0 },
  /* 400 */
    { 0 },
  /* 401 */
-diff -r 6eb88b2e3b90 ircd/s_user.c
---- a/ircd/s_user.c    Wed Mar 17 17:18:13 2010 +0100
-+++ b/ircd/s_user.c    Wed Mar 17 17:40:43 2010 +0100
-@@ -374,12 +374,8 @@
+diff -r b03d03214a42 ircd/s_user.c
+--- a/ircd/s_user.c    Thu Mar 18 09:57:00 2010 +0100
++++ b/ircd/s_user.c    Thu Mar 18 10:45:13 2010 +0100
+@@ -373,12 +373,11 @@
      if (feature_bool(FEAT_AUTOINVISIBLE))
        SetInvisible(sptr);
-     
--    if(feature_bool(FEAT_SETHOST_AUTO)) {
+-    
++
++    /* apply auto sethost if needed */
+     if(feature_bool(FEAT_SETHOST_AUTO)) {
 -      if (conf_check_slines(sptr)) {
 -        send_reply(sptr, RPL_USINGSLINE);
 -        SetSetHost(sptr);
 -      }
--    }
-+    if(feature_bool(FEAT_SETHOST_AUTO))
-+      conf_check_slines(sptr);
++      if (conf_check_slines(sptr))
++        sendrawto_one(sptr, "NOTICE AUTH :*** Using Spoof block privilege");
+     }
  
      SetUser(sptr);
-     cli_handler(sptr) = CLIENT_HANDLER;
+@@ -456,6 +455,9 @@
+    */
+   if (HasHiddenHost(sptr))
+     hide_hostmask(sptr, FLAG_HIDDENHOST);
++  /* client has sethost, inform them of their hidden host */
++  if (HasSetHost(sptr))
++    send_reply(sptr, RPL_HOSTHIDDEN, cli_user(sptr)->host);
+   if (IsInvisible(sptr))
+     ++UserStats.inv_clients;
+   if (IsOper(sptr))