]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - extensions/ip_cloaking_old.c
Functions replacement: ircd_baseXX_{en,de}code -> rb_baseXX_{en,de}code
[irc/rqf/shadowircd.git] / extensions / ip_cloaking_old.c
index 54e13c926b1f190a80e3c09fc9270079595e6e94..c87d7a206506dcd9a4c7fa4ce063cd4dc24b45fe 100644 (file)
@@ -9,7 +9,6 @@
 #include "s_conf.h"
 #include "s_user.h"
 #include "s_serv.h"
-#include "tools.h"
 #include "numeric.h"
 
 /* if you're modifying this module, you'll probably to change this */
@@ -94,7 +93,7 @@ do_host_cloak(const char *inbuf, char *outbuf, int ipmask)
 
        if (ipmask == 0)
        {
-               ircsnprintf(outbuf, HOSTLEN, "%s-%X%X",
+               rb_snprintf(outbuf, HOSTLEN, "%s-%X%X",
                        ServerInfo.network_name, hosthash2, hosthash);
                len1 = strlen(outbuf);
                rest = strchr(inbuf, '.');
@@ -106,7 +105,7 @@ do_host_cloak(const char *inbuf, char *outbuf, int ipmask)
                strlcat(outbuf, rest, HOSTLEN);
        }
        else
-               ircsnprintf(outbuf, HOSTLEN, "%X%X.%s",
+               rb_snprintf(outbuf, HOSTLEN, "%X%X.%s",
                        hosthash2, hosthash, ServerInfo.network_name);
 }
 
@@ -160,7 +159,7 @@ check_new_user(void *vdata)
                source_p->umodes &= ~user_modes['h'];
                return;
        }
-       source_p->localClient->mangledhost = MyMalloc(HOSTLEN);
+       source_p->localClient->mangledhost = rb_malloc(HOSTLEN);
        if (!irccmp(source_p->orighost, source_p->sockhost))
                do_host_cloak(source_p->orighost, source_p->localClient->mangledhost, 1);
        else