]> jfr.im git - solanum.git/blobdiff - include/client.h
libratbox: event: continually adjust ish event times
[solanum.git] / include / client.h
index 09bc400451cb84a1dd36cb22966c15454e09a775..0261c7753af859d6f82b534998a1c121fca1c552 100644 (file)
@@ -71,6 +71,7 @@ struct Server;
 struct LocalUser;
 struct AuthRequest;
 struct PreClient;
+struct ListClient;
 struct scache_entry;
 
 /*
@@ -116,7 +117,8 @@ struct Client
        struct Client *servptr; /* Points to server this Client is on */
        struct Client *from;    /* == self, if Local Client, *NEVER* NULL! */
 
-       struct Whowas *whowas;  /* Pointers to whowas structs */
+       rb_dlink_list whowas_clist;
+
        time_t tsinfo;          /* TS on the nick, SVINFO on server */
        unsigned int umodes;    /* opers, normal users subset */
        unsigned int flags;     /* client flags */
@@ -269,6 +271,8 @@ struct LocalUser
        time_t ratelimit;
        unsigned int join_who_credits;
 
+       struct ListClient *safelist_data;
+
        char *mangledhost; /* non-NULL if host mangling module loaded and
                              applicable to this client */
 
@@ -299,6 +303,14 @@ struct PreClient
        struct rb_sockaddr_storage lip; /* address of our side of the connection */
 };
 
+struct ListClient
+{
+       char *chname;
+       unsigned int users_min, users_max;
+       time_t created_min, created_max, topic_min, topic_max;
+       int operspy;
+};
+
 /*
  * status macros.
  */
@@ -420,6 +432,7 @@ struct PreClient
 
 /* overflow flags */
 /* EARLIER FLAGS ARE IN s_newconf.h */
+#define FLAGS2_EXTENDCHANS     0x00200000
 #define FLAGS2_EXEMPTRESV      0x00400000
 #define FLAGS2_EXEMPTKLINE      0x00800000
 #define FLAGS2_EXEMPTFLOOD      0x01000000
@@ -536,6 +549,8 @@ struct PreClient
 #define SetExemptResv(x)       ((x)->flags2 |= FLAGS2_EXEMPTRESV)
 #define IsIPSpoof(x)            ((x)->flags2 & FLAGS2_IP_SPOOFING)
 #define SetIPSpoof(x)           ((x)->flags2 |= FLAGS2_IP_SPOOFING)
+#define IsExtendChans(x)       ((x)->flags2 & FLAGS2_EXTENDCHANS)
+#define SetExtendChans(x)      ((x)->flags2 |= FLAGS2_EXTENDCHANS)
 
 /* for local users: flood grace period is over
  * for servers: mentioned in networknotice.c notice