Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / include / ircd_reply.h
index 3006d9c32a5f929a227c9ac2db7da779b911d385..9df7d96a2a755de1b0412f0b8eb6678ececc0c52 100644 (file)
 #define INCLUDED_ircd_reply_h
 
 struct Client;
-struct ConfItem;
 
+extern int protocol_violation(struct Client* cptr, const char* pattern, ...);
 extern int need_more_params(struct Client* cptr, const char* cmd);
 extern int send_error_to_client(struct Client* cptr, int error, ...);
-extern int send_reply(struct Client *to, int reply, ...);
-extern int send_admin_info(struct Client* sptr, const struct ConfItem* data);
+extern int send_reply(struct Client* to, int reply, ...);
+
+#define SND_EXPLICIT   0x40000000      /* first arg is a pattern to use */
 
 #endif /* INCLUDED_ircd_reply_h */