]> jfr.im git - solanum.git/blobdiff - modules/core/m_nick.c
msg: remove last vestiges of the fakelag system. charybdis has never supported fakelag.
[solanum.git] / modules / core / m_nick.c
index ab358a151505a5581ef9e78dba95e6af3028fde7..eaf9fb86784669e0942c2f4781994ca03222f842 100644 (file)
  */
 #define SAVE_NICKTS 100
 
-static int mr_nick(struct Client *, struct Client *, int, const char **);
-static int m_nick(struct Client *, struct Client *, int, const char **);
-static int mc_nick(struct Client *, struct Client *, int, const char **);
-static int ms_nick(struct Client *, struct Client *, int, const char **);
-static int ms_uid(struct Client *, struct Client *, int, const char **);
-static int ms_euid(struct Client *, struct Client *, int, const char **);
-static int ms_save(struct Client *, struct Client *, int, const char **);
+static int mr_nick(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int m_nick(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int mc_nick(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_nick(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_uid(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_euid(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static int ms_save(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 static int can_save(struct Client *);
 static void save_user(struct Client *, struct Client *, struct Client *);
 static void bad_nickname(struct Client *, const char *);
 
 struct Message nick_msgtab = {
-       "NICK", 0, 0, 0, MFLG_SLOW,
+       "NICK", 0, 0, 0, 0,
        {{mr_nick, 0}, {m_nick, 0}, {mc_nick, 3}, {ms_nick, 0}, mg_ignore, {m_nick, 0}}
 };
 struct Message uid_msgtab = {
-       "UID", 0, 0, 0, MFLG_SLOW,
+       "UID", 0, 0, 0, 0,
        {mg_ignore, mg_ignore, mg_ignore, {ms_uid, 9}, mg_ignore, mg_ignore}
 };
 struct Message euid_msgtab = {
-       "EUID", 0, 0, 0, MFLG_SLOW,
+       "EUID", 0, 0, 0, 0,
        {mg_ignore, mg_ignore, mg_ignore, {ms_euid, 12}, mg_ignore, mg_ignore}
 };
 struct Message save_msgtab = {
-       "SAVE", 0, 0, 0, MFLG_SLOW,
+       "SAVE", 0, 0, 0, 0,
        {mg_ignore, mg_ignore, mg_ignore, {ms_save, 3}, mg_ignore, mg_ignore}
 };
 
@@ -111,7 +111,7 @@ static int perform_nickchange_collides(struct Client *, struct Client *,
  *       parv[1] = nickname
  */
 static int
-mr_nick(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+mr_nick(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
        char nick[NICKLEN];
@@ -169,7 +169,7 @@ mr_nick(struct Client *client_p, struct Client *source_p, int parc, const char *
  *     parv[1] = nickname
  */
 static int
-m_nick(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+m_nick(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
        char nick[NICKLEN];
@@ -244,7 +244,7 @@ m_nick(struct Client *client_p, struct Client *source_p, int parc, const char *p
  *    parv[2] = TS when nick change
  */
 static int
-mc_nick(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+mc_nick(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
        time_t newts = 0;
@@ -284,7 +284,7 @@ mc_nick(struct Client *client_p, struct Client *source_p, int parc, const char *
 }
 
 static int
-ms_nick(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+ms_nick(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        const char *nick, *server;
 
@@ -317,7 +317,7 @@ ms_nick(struct Client *client_p, struct Client *source_p, int parc, const char *
  *     parv[9] - gecos
  */
 static int
-ms_uid(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+ms_uid(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
        time_t newts = 0;
@@ -332,7 +332,7 @@ ms_uid(struct Client *client_p, struct Client *source_p, int parc, const char *p
                                     "with %d arguments (expecting 10)", client_p->name, parc);
                ilog(L_SERVER, "Excess parameters (%d) for command 'UID' from %s.",
                     parc, client_p->name);
-               rb_snprintf(squitreason, sizeof squitreason,
+               snprintf(squitreason, sizeof squitreason,
                                "Excess parameters (%d) to %s command, expecting %d",
                                parc, "UID", 10);
                exit_client(client_p, client_p, client_p, squitreason);
@@ -348,7 +348,7 @@ ms_uid(struct Client *client_p, struct Client *source_p, int parc, const char *p
 
        if(!clean_uid(parv[8], source_p->id))
        {
-               rb_snprintf(squitreason, sizeof squitreason,
+               snprintf(squitreason, sizeof squitreason,
                                "Invalid UID %s for nick %s on %s/%s",
                                parv[8], parv[1], source_p->name, source_p->id);
                exit_client(client_p, client_p, client_p, squitreason);
@@ -408,7 +408,7 @@ ms_uid(struct Client *client_p, struct Client *source_p, int parc, const char *p
  *     parv[11] - gecos
  */
 static int
-ms_euid(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+ms_euid(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
        time_t newts = 0;
@@ -423,7 +423,7 @@ ms_euid(struct Client *client_p, struct Client *source_p, int parc, const char *
                                     "with %d arguments (expecting 12)", client_p->name, parc);
                ilog(L_SERVER, "Excess parameters (%d) for command 'EUID' from %s.",
                     parc, client_p->name);
-               rb_snprintf(squitreason, sizeof squitreason,
+               snprintf(squitreason, sizeof squitreason,
                                "Excess parameters (%d) to %s command, expecting %d",
                                parc, "EUID", 12);
                exit_client(client_p, client_p, client_p, squitreason);
@@ -439,7 +439,7 @@ ms_euid(struct Client *client_p, struct Client *source_p, int parc, const char *
 
        if(!clean_uid(parv[8], source_p->id))
        {
-               rb_snprintf(squitreason, sizeof squitreason,
+               snprintf(squitreason, sizeof squitreason,
                                "Invalid UID %s for nick %s on %s/%s",
                                parv[8], parv[1], source_p->name, source_p->id);
                exit_client(client_p, client_p, client_p, squitreason);
@@ -500,7 +500,7 @@ ms_euid(struct Client *client_p, struct Client *source_p, int parc, const char *
  *   parv[2] - TS
  */
 static int
-ms_save(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
+ms_save(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
        struct Client *target_p;
 
@@ -612,7 +612,7 @@ set_initial_nick(struct Client *client_p, struct Client *source_p, char *nick)
        strcpy(source_p->name, nick);
        add_to_client_hash(nick, source_p);
 
-       rb_snprintf(note, sizeof(note), "Nick: %s", nick);
+       snprintf(note, sizeof(note), "Nick: %s", nick);
        rb_note(client_p->localClient->F, note);
 
        if(source_p->flags & FLAGS_SENTUSER)
@@ -717,7 +717,7 @@ change_local_nick(struct Client *client_p, struct Client *source_p,
                rb_dlinkDestroy(ptr, &source_p->on_allow_list);
        }
 
-       rb_snprintf(note, sizeof(note), "Nick: %s", nick);
+       snprintf(note, sizeof(note), "Nick: %s", nick);
        rb_note(client_p->localClient->F, note);
 
        return;
@@ -1211,7 +1211,7 @@ static void bad_nickname(struct Client *client_p, const char *nick)
        ilog(L_SERVER, "Link %s cancelled, bad nickname %s sent (NICKLEN mismatch?)",
                        client_p->name, nick);
 
-       rb_snprintf(squitreason, sizeof squitreason,
+       snprintf(squitreason, sizeof squitreason,
                        "Bad nickname introduced [%s]", nick);
        exit_client(client_p, client_p, &me, squitreason);
 }