X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/850b23f3a94759a861c6aea35440e09d6e7cc916..07b7b659c16665ce33b058d1a06a7a420850ceb9:/include/s_newconf.h diff --git a/include/s_newconf.h b/include/s_newconf.h index 916cf77..1ad3dbf 100644 --- a/include/s_newconf.h +++ b/include/s_newconf.h @@ -60,9 +60,6 @@ extern void init_s_newconf(void); extern void clear_s_newconf(void); extern void clear_s_newconf_bans(void); -#define FREE_TARGET(x) ((x)->localClient->targinfo[0]) -#define USED_TARGETS(x) ((x)->localClient->targinfo[1]) - typedef struct { char *ip; @@ -115,12 +112,17 @@ struct oper_conf char *username; char *host; char *passwd; + char *certfp; int flags; int umodes; unsigned int snomask; + char *vhost; + char *swhois; + char *operstring; + struct PrivilegeSet *privset; #ifdef HAVE_LIBCRYPTO @@ -164,6 +166,7 @@ extern void cluster_generic(struct Client *, const char *, int cltype, #define IsOperAdmin(x) (HasPrivilege((x), "oper:admin") || HasPrivilege((x), "oper:hidden_admin")) #define IsOperOperwall(x) (HasPrivilege((x), "oper:operwall")) #define IsOperSpy(x) (HasPrivilege((x), "oper:spy")) +#define IsOperOverride(x) (HasPrivilege((x), "oper:override")) #define IsOperInvis(x) (HasPrivilege((x), "oper:hidden")) #define IsOperRemoteBan(x) (HasPrivilege((x), "oper:remoteban")) #define IsOperMassNotice(x) (HasPrivilege((x), "oper:mass_notice")) @@ -223,6 +226,7 @@ extern void attach_server_conf(struct Client *, struct server_conf *); extern void detach_server_conf(struct Client *); extern void set_server_conf_autoconn(struct Client *source_p, const char *name, int newval); +extern void disable_server_conf_autoconn(const char *name); extern struct ConfItem *find_xline(const char *, int);