X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/d6c813780f431deb2bef9fc03782561f94eadd77..d07feac7b240c00fd8ff543241ab298a287342ae:/include/client.h diff --git a/include/client.h b/include/client.h index af8ccfa4..0f132160 100644 --- a/include/client.h +++ b/include/client.h @@ -36,9 +36,6 @@ #include "ircd.h" #include "privilege.h" -/* other structs */ -struct Blacklist; - /* we store ipv6 ips for remote clients, so this needs to be v6 always */ #define HOSTIPLEN 53 /* sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255.ipv6") */ #define PASSWDLEN 128 @@ -452,7 +449,6 @@ struct ListClient #define UMODE_SERVICE 0x0040 #define UMODE_DEAF 0x0080 #define UMODE_NOFORWARD 0x0100 /* don't forward */ -#define UMODE_REGONLYMSG 0x0200 /* only allow logged in users to msg */ /* user information flags, only settable by remote mode or local oper */ #define UMODE_OPER 0x1000 /* Operator */ @@ -543,7 +539,6 @@ struct ListClient #define IsService(x) ((x)->umodes & UMODE_SERVICE) #define IsDeaf(x) ((x)->umodes & UMODE_DEAF) #define IsNoForward(x) ((x)->umodes & UMODE_NOFORWARD) -#define IsSetRegOnlyMsg(x) ((x)->umodes & UMODE_REGONLYMSG) #define SetGotId(x) ((x)->flags |= FLAGS_GOTID) #define IsGotId(x) (((x)->flags & FLAGS_GOTID) != 0)