]> jfr.im git - irc/evilnet/x3.git/blobdiff - src/proto.h
This should fix the nickserv module complaining about not enough parameters when...
[irc/evilnet/x3.git] / src / proto.h
index e8adde900e8d1b2a06d5e940402e52d027dd3e71..8b7b15cd46d376051868f6b0c22a2240346c7f9a 100644 (file)
@@ -37,6 +37,7 @@
 #endif
 
 struct gline;
+struct shun;
 struct server;
 struct userNode;
 struct chanNode;
@@ -139,9 +140,11 @@ void irc_topic(struct userNode *service, struct userNode *who, struct chanNode *
 void irc_fetchtopic(struct userNode *from, const char *to);
 
 /* network maintenance */
-void irc_gline(struct server *srv, struct gline *gline);
+void irc_gline(struct server *srv, struct gline *gline, int silent);
+void irc_shun(struct server *srv, struct shun *shun);
 void irc_settime(const char *srv_name_mask, time_t new_time);
 void irc_ungline(const char *mask);
+void irc_unshun(const char *mask);
 void irc_error(const char *to, const char *message);
 void irc_kill(struct userNode *from, struct userNode *target, const char *message);
 void irc_raw(const char *what);