X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/d8a023eddd2155648c09a0e6bdc89f371adda627..36fb4e9a7743326d1a2ca7601bc9bf1c5b9a0bcb:/include/s_newconf.h diff --git a/include/s_newconf.h b/include/s_newconf.h index 03e887d..f71df24 100644 --- a/include/s_newconf.h +++ b/include/s_newconf.h @@ -96,10 +96,12 @@ struct remote_conf #define SHARED_TDLINE 0x0800 #define SHARED_PDLINE 0x1000 #define SHARED_UNDLINE 0x2000 +#define SHARED_DIE 0x4000 +#define SHARED_MODULE 0x8000 #define SHARED_ALL (SHARED_TKLINE | SHARED_PKLINE | SHARED_UNKLINE |\ SHARED_PXLINE | SHARED_TXLINE | SHARED_UNXLINE |\ - SHARED_TRESV | SHARED_PRESV | SHARED_UNRESV) + SHARED_TRESV | SHARED_PRESV | SHARED_UNRESV | SHARED_REHASH) #define CLUSTER_ALL (SHARED_ALL | SHARED_LOCOPS) /* flags used in hub/leaf */ @@ -119,6 +121,10 @@ struct oper_conf unsigned int snomask; + char *vhost; + char *swhois; + char *operstring; + struct PrivilegeSet *privset; #ifdef HAVE_LIBCRYPTO @@ -162,6 +168,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"))