Author: Kev <klmitch@mit.edu>
[ircu2.10.12-pk.git] / ircd / m_proto.c
index 9abd3d1c1699a3c45424fd5ec231ffd25af70e07..e7731d2679a2cb7c8412692d72ba378c552d457e 100644 (file)
@@ -22,6 +22,8 @@
  *
  * $Id$
  */
+#include "config.h"
+
 #if 0
 /*
  * No need to include handlers.h here the signatures must match
@@ -36,6 +38,7 @@
 #include "ircd_chattr.h"
 #include "ircd_reply.h"
 #include "ircd_string.h"
+#include "msg.h"
 #include "numeric.h"
 #include "numnicks.h"
 #include "s_debug.h"
 
 static const char* const PROTO_REQ = "REQ";
 static const char* const PROTO_ACK = "ACK";
+static const char* const PROTO_SUP = "SUP";
 
 int proto_handle_ack(struct Client* cptr, const char* msg)
 {
@@ -130,8 +134,9 @@ int proto_handle_req(struct Client* cptr, const char* msg)
 int proto_send_supported(struct Client* cptr)
 {
   /*
-   * sendto_one(cptr, RPL_PROTOLIST, me.name, cptr->name, "stuff");
+   * send_reply(cptr, RPL_PROTOLIST, "stuff");
    */
+  sendcmdto_one(&me,CMD_PROTO,cptr,"%s unet1 1 1",PROTO_SUP);
   return 0;
 }
 
@@ -148,6 +153,9 @@ int m_proto(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
 
   else if (0 == ircd_strcmp(PROTO_ACK, parv[1]))
     return proto_handle_ack(cptr, parv[2]);
+    
+  else if (0 == ircd_strcmp(PROTO_SUP, parv[1]))
+    return 0; /* ignore it */
 
   return 0;
 }