added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / ircd / m_userip.c
index 80078ff2c54b7420fbbe3b403fe63448e3d80e78..0085a0cd15c29ef9788f6c1b658a210ffe797e85 100644 (file)
 #include "ircd_reply.h"
 #include "ircd_string.h"
 #include "ircd_features.h"
+#include "ircd_log.h"
 #include "msgq.h"
 #include "numeric.h"
 #include "s_user.h"
 #include "struct.h"
 
-#include <assert.h>
+/* #include <assert.h> -- Now using assert in ircd_log.h */
 
 static void userip_formatter(struct Client* cptr, struct Client *sptr, struct MsgBuf* mb)
 {
@@ -98,7 +99,13 @@ static void userip_formatter(struct Client* cptr, struct Client *sptr, struct Ms
   msgq_append(0, mb, "%s%s=%c%s@%s", cli_name(cptr),
              SeeOper(sptr,cptr) ? "*" : "",
              cli_user(cptr)->away ? '-' : '+', cli_user(cptr)->username,
-             HasHiddenHost(cptr) && !IsAnOper(sptr) && (sptr != cptr) ?
+             /* Do not *EVER* change this to give opers the real IP.
+              * Too many scripts rely on this data and can inadvertently
+              * publish the user's real IP, thus breaking the security
+              * of +x.  If an oper wants the real IP, he should go to
+              * /whois to get it.
+              */
+             HasHiddenHost(cptr) && (sptr != cptr) ?
              feature_str(FEAT_HIDDEN_IP) :
              ircd_ntoa(&cli_ip(cptr)));
 }