]> jfr.im git - irc/quakenet/snircd-patchqueue.git/blobdiff - opername.patch
removed showumodehtoclients - covered in sethost patch
[irc/quakenet/snircd-patchqueue.git] / opername.patch
index d7e8029eaebbb87437cb22e84cf62d4cc5cb1081..296e5d4c57c20a00a76468fd58bb7701bfed285a 100644 (file)
@@ -1,13 +1,13 @@
-Add opername to snomask and remote connect wallops
+Add opername to snomask, remote connect wallops, and as prefix to server jupes
 
 in form of nick(opername)
 new function get_client_name_and_opername() add in s_misc.c
 mirrored after get_client_name() which can return either nick/server or nick[ident@ip]
 
-diff -r a1e13a4f150b include/client.h
---- a/include/client.h Wed Mar 17 14:52:11 2010 +0100
-+++ b/include/client.h Wed Mar 17 15:44:04 2010 +0100
-@@ -810,6 +810,7 @@
+diff -r bb8b6e2e3236 include/client.h
+--- a/include/client.h
++++ b/include/client.h
+@@ -809,6 +809,7 @@
  #define IPV6USERBITS 64
  
  extern const char* get_client_name(const struct Client* sptr, int showip);
@@ -15,10 +15,10 @@ diff -r a1e13a4f150b include/client.h
  extern const char* client_get_default_umode(const struct Client* sptr);
  extern int client_get_ping(const struct Client* local_client);
  extern void client_drop_sendq(struct Connection* con);
-diff -r a1e13a4f150b ircd/channel.c
---- a/ircd/channel.c   Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/channel.c   Wed Mar 17 15:44:04 2010 +0100
-@@ -1848,8 +1848,8 @@
+diff -r bb8b6e2e3236 ircd/channel.c
+--- a/ircd/channel.c
++++ b/ircd/channel.c
+@@ -1910,8 +1910,8 @@
      if (mbuf->mb_dest & MODEBUF_DEST_HACK4)
        sendto_opmask_butone(0, SNO_HACK4, "HACK(4): %s MODE %s %s%s%s%s%s%s "
                           "[%Tu]",
@@ -29,10 +29,10 @@ diff -r a1e13a4f150b ircd/channel.c
                           mbuf->mb_channel->chname,
                           rembuf_i ? "-" : "", rembuf, addbuf_i ? "+" : "",
                           addbuf, remstr, addstr,
-diff -r a1e13a4f150b ircd/gline.c
---- a/ircd/gline.c     Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/gline.c     Wed Mar 17 15:44:04 2010 +0100
-@@ -563,7 +563,7 @@
+diff -r bb8b6e2e3236 ircd/gline.c
+--- a/ircd/gline.c
++++ b/ircd/gline.c
+@@ -567,7 +567,7 @@
                         SNO_AUTO, "%s adding %s%s %s for %s%s%s%s%s, expiring at "
                         "%Tu: %s",
                         (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
@@ -41,7 +41,7 @@ diff -r a1e13a4f150b ircd/gline.c
                           cli_name((cli_user(sptr))->server),
                         (flags & GLINE_ACTIVE) ? "" : "deactivated ",
                       (flags & GLINE_LOCAL) ? "local" : "global",
-@@ -638,7 +638,7 @@
+@@ -642,7 +642,7 @@
    sendto_opmask_butone(0, SNO_GLINE, "%s activating global %s for %s%s%s%s%s, "
                         "expiring at %Tu: %s",
                         (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
@@ -50,7 +50,7 @@ diff -r a1e13a4f150b ircd/gline.c
                           cli_name((cli_user(sptr))->server),
                         GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : gline->gl_nick,
-@@ -711,7 +711,7 @@
+@@ -715,7 +715,7 @@
    sendto_opmask_butone(0, SNO_GLINE, "%s %s %s for %s%s%s%s%s, expiring at %Tu: "
                       "%s",
                         (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
@@ -59,7 +59,7 @@ diff -r a1e13a4f150b ircd/gline.c
                           cli_name((cli_user(sptr))->server),
                       msg, GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : gline->gl_nick,
-@@ -915,7 +915,7 @@
+@@ -919,7 +919,7 @@
    /* All right, inform ops... */
    sendto_opmask_butone(0, SNO_GLINE, "%s modifying global %s for %s%s%s%s%s:%s",
                       (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
@@ -68,7 +68,7 @@ diff -r a1e13a4f150b ircd/gline.c
                       GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : gline->gl_nick,
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : "!",
-@@ -962,7 +962,7 @@
+@@ -966,7 +966,7 @@
    /* Inform ops and log it */
    sendto_opmask_butone(0, SNO_GLINE, "%s removing local %s for %s%s%s%s%s",
                       (feature_bool(FEAT_HIS_SNOTICES) || IsServer(sptr)) ?
@@ -77,9 +77,9 @@ diff -r a1e13a4f150b ircd/gline.c
                       GlineIsBadChan(gline) ? "BADCHAN" : "GLINE",
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : gline->gl_nick,
                         GlineIsBadChan(gline)|GlineIsRealName(gline) ? "" : "!",
-diff -r a1e13a4f150b ircd/jupe.c
---- a/ircd/jupe.c      Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/jupe.c      Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/jupe.c
+--- a/ircd/jupe.c
++++ b/ircd/jupe.c
 @@ -156,7 +156,7 @@
    sendto_opmask_butone(0, SNO_NETWORK, "%s adding %sJUPE for %s, expiring at "
                         "%Tu: %s",
@@ -107,9 +107,9 @@ diff -r a1e13a4f150b ircd/jupe.c
                           cli_name((cli_user(sptr))->server),
                       JupeIsLocal(jupe) ? "removing local" : "deactivating",
                       jupe->ju_server, jupe->ju_expire + TSoffset,
-diff -r a1e13a4f150b ircd/m_connect.c
---- a/ircd/m_connect.c Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_connect.c Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_connect.c
+--- a/ircd/m_connect.c
++++ b/ircd/m_connect.c
 @@ -197,7 +197,7 @@
    sendwallto_group_butone(&me, WALL_WALLOPS, 0,
                         "Remote CONNECT %s %s from %s", aconf->name,
@@ -119,9 +119,9 @@ diff -r a1e13a4f150b ircd/m_connect.c
    log_write(LS_NETWORK, L_INFO, 0, "CONNECT From %C : %s %s", sptr, aconf->name,
            parv[2] ? parv[2] : "");
  
-diff -r a1e13a4f150b ircd/m_join.c
---- a/ircd/m_join.c    Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_join.c    Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_join.c
+--- a/ircd/m_join.c
++++ b/ircd/m_join.c
 @@ -242,8 +242,8 @@
          }
          /* send accountability notice */
@@ -133,9 +133,36 @@ diff -r a1e13a4f150b ircd/m_join.c
          err = 0;
        }
  
-diff -r a1e13a4f150b ircd/m_kill.c
---- a/ircd/m_kill.c    Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_kill.c    Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_jupe.c
+--- a/ircd/m_jupe.c
++++ b/ircd/m_jupe.c
+@@ -193,7 +193,7 @@
+   struct Jupe *ajupe;
+   unsigned int flags = 0;
+   time_t expire_off;
+-  char *server = parv[1], *target = 0, *reason;
++  char *server = parv[1], *target = 0, reason[BUFSIZE];
+   if (parc < 2) {
+     if (!HasPriv(sptr, PRIV_ROUTEINFO))
+@@ -214,12 +214,12 @@
+   if (parc == 4) {
+     expire_off = atoi(parv[2]);
+-    reason = parv[3];
++    ircd_snprintf(0, reason, sizeof(reason), "%s: %s", cli_user(sptr)->opername, parv[3]);
+     flags |= JUPE_LOCAL;
+   } else if (parc > 4) {
+     target = parv[2];
+     expire_off = atoi(parv[3]);
+-    reason = parv[4];
++    ircd_snprintf(0, reason, sizeof(reason), "%s: %s", cli_user(sptr)->opername, parv[4]);
+   } else
+     return need_more_params(sptr, "JUPE");
+diff -r bb8b6e2e3236 ircd/m_kill.c
+--- a/ircd/m_kill.c
++++ b/ircd/m_kill.c
 @@ -127,7 +127,7 @@
     */
    sendto_opmask_butone(0, snomask,
@@ -145,9 +172,9 @@ diff -r a1e13a4f150b ircd/m_kill.c
                         inpath, path, msg);
    log_write_kill(victim, sptr, inpath, path, msg);
  
-diff -r a1e13a4f150b ircd/m_oper.c
---- a/ircd/m_oper.c    Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_oper.c    Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_oper.c
+--- a/ircd/m_oper.c
++++ b/ircd/m_oper.c
 @@ -192,9 +192,9 @@
      send_umode_out(cptr, sptr, &old_mode, HasPriv(sptr, PRIV_PROPAGATE));
      send_reply(sptr, RPL_YOUREOPER);
@@ -161,9 +188,9 @@ diff -r a1e13a4f150b ircd/m_oper.c
  
      log_write(LS_OPER, L_INFO, 0, "OPER (%s) by (%#R)", name, sptr);
    }
-diff -r a1e13a4f150b ircd/m_rehash.c
---- a/ircd/m_rehash.c  Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_rehash.c  Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_rehash.c
+--- a/ircd/m_rehash.c
++++ b/ircd/m_rehash.c
 @@ -121,8 +121,8 @@
    }
  
@@ -175,9 +202,9 @@ diff -r a1e13a4f150b ircd/m_rehash.c
  
    log_write(LS_SYSTEM, L_INFO, 0, "REHASH From %#C", sptr);
  
-diff -r a1e13a4f150b ircd/m_settime.c
---- a/ircd/m_settime.c Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/m_settime.c Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/m_settime.c
+--- a/ircd/m_settime.c
++++ b/ircd/m_settime.c
 @@ -177,7 +177,7 @@
    else /* tell opers about time change */
    {
@@ -196,9 +223,9 @@ diff -r a1e13a4f150b ircd/m_settime.c
                         (dt < 0) ? "forwards" : "backwards");
      TSoffset -= dt; /* apply time change */
      if (IsUser(sptr)) /* let user know what we did */
-diff -r a1e13a4f150b ircd/s_misc.c
---- a/ircd/s_misc.c    Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/s_misc.c    Wed Mar 17 15:44:04 2010 +0100
+diff -r bb8b6e2e3236 ircd/s_misc.c
+--- a/ircd/s_misc.c
++++ b/ircd/s_misc.c
 @@ -172,6 +172,20 @@
    return nbuf;
  }
@@ -229,24 +256,12 @@ diff -r a1e13a4f150b ircd/s_misc.c
                           cli_name(cli_user(killer)->server));
      else if (killer != &me && cli_serv(victim)->up != killer)
        sendto_opmask_butone(0, SNO_OLDSNO, "Received SQUIT %s from %s :",
-diff -r a1e13a4f150b ircd/s_user.c
---- a/ircd/s_user.c    Wed Mar 17 14:52:11 2010 +0100
-+++ b/ircd/s_user.c    Wed Mar 17 15:44:04 2010 +0100
-@@ -1342,9 +1342,8 @@
-             cli_handler(sptr) = CLIENT_HANDLER;
-             
-             /* notify my operators a local operator has deOPERed - wiebe */
--            sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (o) as %s",
--            cli_name(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
--            cli_user(sptr)->opername);
-+            sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (o)",
-+            get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost);
-             
-           }
-         }
-@@ -1546,9 +1545,9 @@
+diff -r bb8b6e2e3236 ircd/s_user.c
+--- a/ircd/s_user.c
++++ b/ircd/s_user.c
+@@ -1530,9 +1530,9 @@
  
-       /* notify my operators a user has OPERed on a remote server - wiebe */
+       /* notify my operators a user has OPERed on a remote server */
        if (!MyConnect(sptr)) {
 -         sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is now operator (O) as %s on %s",
 -         cli_name(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
@@ -257,22 +272,34 @@ diff -r a1e13a4f150b ircd/s_user.c
        }
                         
      }
-@@ -1563,13 +1562,12 @@
+@@ -1545,9 +1545,8 @@
+     if (FlagHas(&setflags, FLAG_LOCOP) && !IsLocOp(sptr)) {
+       /* notify my operators a local operator has deOPERed */
+-      sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (o) as %s",
+-        cli_name(sptr), cli_user(sptr)->realusername, cli_sockhost(sptr),
+-        cli_user(sptr)->opername);
++      sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (o)",
++        get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_sockhost(sptr));
+     }
+     if (FlagHas(&setflags, FLAG_OPER) && !IsOper(sptr)) {
+@@ -1557,13 +1556,12 @@
        
-       /* notify my operators an operator has deOPERed on the network - wiebe */
+       /* notify my operators an operator has deOPERed on the network */
        if (MyConnect(sptr)) {
 -        sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (O) as %s",
--        cli_name(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
--        cli_user(sptr)->opername ? cli_user(sptr)->opername : "<unknown>");
+-          cli_name(sptr), cli_user(sptr)->realusername, cli_sockhost(sptr),
+-          cli_user(sptr)->opername ? cli_user(sptr)->opername : "<unknown>");
 +        sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (O)",
-+        get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost);
++          get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_sockhost(sptr));
        } else {
 -        sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (O) as %s on %s",
--        cli_name(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
--        cli_user(sptr)->opername ? cli_user(sptr)->opername : "<unknown>", cli_name(cli_user(sptr)->server));
+-          cli_name(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
+-          cli_user(sptr)->opername ? cli_user(sptr)->opername : "<unknown>", cli_name(cli_user(sptr)->server));
 +        sendto_opmask_butone(0, SNO_OLDSNO, "%s (%s@%s) is no longer operator (O) on %s",
-+        get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
-+        cli_name(cli_user(sptr)->server));
++          get_client_name_and_opername(sptr), cli_user(sptr)->realusername, cli_user(sptr)->realhost,
++          cli_name(cli_user(sptr)->server));
        }
        
        client_set_privs(sptr, NULL); /* will clear propagate privilege */