X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/ff3b058ac51e9caf5cf1fd310b8a401a97a85582..10be9be0103f5b862aa599beb35c38a380f8b92d:/src/proto.h diff --git a/src/proto.h b/src/proto.h index 359d817..7cf7d66 100644 --- a/src/proto.h +++ b/src/proto.h @@ -32,6 +32,10 @@ #define MAXNUMPARAMS 200 #define ALLCHANMSG_FUNCS_MAX 4 /* +1 == 5 potential 'allchanmsg' funcs */ +#ifdef HAVE_NETINET_IN_H +#include +#endif + struct gline; struct shun; struct server; @@ -94,16 +98,16 @@ char *client_report_privs(struct userNode *client); int check_priv(char *priv); /* Callback notifications for protocol support. */ -typedef void (*chanmsg_func_t) (struct userNode *user, struct chanNode *chan, const char *text, struct userNode *bot); +typedef void (*chanmsg_func_t) (struct userNode *user, struct chanNode *chan, char *text, struct userNode *bot); void reg_chanmsg_func(unsigned char prefix, struct userNode *service, chanmsg_func_t handler); void reg_allchanmsg_func(struct userNode *service, chanmsg_func_t handler); struct userNode *get_chanmsg_bot(unsigned char prefix); -typedef void (*privmsg_func_t) (struct userNode *user, struct userNode *target, const char *text, int server_qualified); +typedef void (*privmsg_func_t) (struct userNode *user, struct userNode *target, char *text, int server_qualified); void reg_privmsg_func(struct userNode *user, privmsg_func_t handler); void reg_notice_func(struct userNode *user, privmsg_func_t handler); -void unreg_privmsg_func(struct userNode *user); -void unreg_notice_func(struct userNode *user); +void unreg_privmsg_func(struct userNode *user, privmsg_func_t handler); +void unreg_notice_func(struct userNode *user, privmsg_func_t handler); typedef void (*oper_func_t) (struct userNode *user); void reg_oper_func(oper_func_t handler); @@ -143,6 +147,7 @@ void irc_topic(struct userNode *service, struct userNode *who, struct chanNode * void irc_fetchtopic(struct userNode *from, const char *to); void irc_svsjoin(struct userNode *from, struct userNode *who, struct chanNode *to); void irc_svspart(struct userNode *from, struct userNode *who, struct chanNode *to); +void irc_svsquit(struct userNode *from, struct userNode *who, char *reason); /* network maintenance */ void irc_silence(struct userNode *who, const char *mask, int add); @@ -166,6 +171,7 @@ void irc_account(struct userNode *user, const char *stamp, time_t timestamp); void irc_regnick(struct userNode *user); void irc_fakehost(struct userNode *user, const char *host); void irc_mark(struct userNode *user, char *mark); +void irc_sno(unsigned int mask, char const* format, ...); /* numeric messages */ void irc_numeric(struct userNode *user, unsigned int num, const char *format, ...); @@ -173,21 +179,17 @@ void irc_numeric(struct userNode *user, unsigned int num, const char *format, .. #define RPL_ENDOFSTATS 219 #define RPL_STATSUPTIME 242 #define RPL_MAXCONNECTIONS 250 -#define RPL_AWAY 301 #define RPL_WHOISUSER 311 #define RPL_WHOISSERVER 312 #define RPL_WHOISOPERATOR 313 -#define RPL_WHOISIDLE 317 #define RPL_ENDOFWHOIS 318 -#define RPL_WHOISCHANNELS 319 -#define RPL_WHOISACCOUNT 330 -#define RPL_WHOISACTUALLY 338 #define ERR_NOSUCHNICK 401 /* stuff originally from other headers that is really protocol-specific */ int IsChannelName(const char *name); int is_valid_nick(const char *nick); -struct userNode *AddLocalUser(const char *nick, const char *ident, const char *hostname, const char *desc, const char *modes); +struct userNode *AddService(const char *nick, const char *modes, const char *desc, const char *hostname); +struct userNode *AddClone(const char *nick, const char *ident, const char *hostname, const char *desc); struct server* AddServer(struct server* uplink, const char *name, int hops, time_t boot, time_t link, const char *numeric, const char *description); void DelServer(struct server* serv, int announce, const char *message); void DelUser(struct userNode* user, struct userNode *killer, int announce, const char *why);