fixed ssl.c bug when ssl backend returns IO_BLOCKED but IO engine doesn't get informe...
[ircu2.10.12-pk.git] / ircd / parse.c
index 3c3c3d5c7e5bcb8e0e34ef18855a3240461d77ee..fab27434241d81c99a34abd5a4773ae7d1fb6993 100644 (file)
@@ -218,6 +218,13 @@ struct Message msgtab[] = {
     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
     { m_unregistered, m_invite, ms_invite, m_invite, m_ignore }
   },
+  {
+    MSG_UNINVITE,
+    TOK_UNINVITE,
+    0, MAXPARA, MFLG_SLOW, 0, NULL,
+    /* UNREG, CLIENT, SERVER, OPER, SERVICE */
+    { m_unregistered, m_uninvite, ms_uninvite, m_uninvite, m_ignore }
+  },
   {
     MSG_KICK,
     TOK_KICK,
@@ -687,7 +694,7 @@ struct Message msgtab[] = {
     TOK_SVSPART,
     0, MAXPARA, MFLG_SLOW, 0, NULL,
     /* UNREG, CLIENT, SERVER, OPER, SERVICE */
-    { m_ignore, m_ignore, ms_svspart, m_svspart, m_ignore }
+    { m_ignore, m_ignore, ms_svspart, m_ignore, m_ignore }
   },
   {
     MSG_WEBIRC,