Author: Ghostwolf <foxxe@wtfs.net>
[ircu2.10.12-pk.git] / include / s_user.h
index fec38e238f7e0fd10718d881659c9329fc0d55d0..f9d9e4cb3ce18ec796da964a63c5ed94553e7f0c 100644 (file)
@@ -12,7 +12,6 @@
 
 struct Client;
 struct User;
-struct Gline;
 struct Channel;
 struct MsgBuf;
 
@@ -58,8 +57,7 @@ typedef void (*InfoFormatter)(struct Client* who, struct MsgBuf* buf);
 extern struct User* make_user(struct Client *cptr);
 extern void         free_user(struct User *user);
 extern int          register_user(struct Client* cptr, struct Client* sptr,
-                                  const char* nick, char* username,
-                                 struct Gline *agline);
+                                  const char* nick, char* username);
 
 extern void         user_count_memory(size_t* count_out, size_t* bytes_out);
 
@@ -74,6 +72,7 @@ extern void send_user_info(struct Client* to, char* names, int rpl,
                            InfoFormatter fmt);
 extern int add_silence(struct Client* sptr, const char* mask);
 
+extern int hide_hostmask(struct Client *cptr, unsigned int flags);
 extern int set_user_mode(struct Client *cptr, struct Client *sptr,
                          int parc, char *parv[]);
 extern int is_silenced(struct Client *sptr, struct Client *acptr);
@@ -83,6 +82,10 @@ extern int hunt_server_cmd(struct Client *from, const char *cmd,
                           const char *tok, struct Client *one,
                           int MustBeOper, const char *pattern, int server,
                           int parc, char *parv[]);
+extern int hunt_server_prio_cmd(struct Client *from, const char *cmd,
+                               const char *tok, struct Client *one,
+                               int MustBeOper, const char *pattern,
+                               int server, int parc, char *parv[]);
 extern struct Client* next_client(struct Client* next, const char* ch);
 extern char *umode_str(struct Client *cptr);
 extern void send_umode(struct Client *cptr, struct Client *sptr, int old, int sendmask);
@@ -94,6 +97,7 @@ extern int check_target_limit(struct Client *sptr, void *target, const char *nam
 extern void add_target(struct Client *sptr, void *target);
 extern unsigned int umode_make_snomask(unsigned int oldmask, char *arg,
                                        int what);
+extern int send_supported(struct Client *cptr);
 
 #define NAMES_ALL 1 /* List all users in channel */
 #define NAMES_VIS 2 /* List only visible users in non-secret channels */