]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/client.h
Automated merge with ssh://hg.atheme.org//hg/charybdis
[irc/rqf/shadowircd.git] / include / client.h
index 7027dde6d4b447671e1f2fe7efca656211fb4c54..178a9a37a960cc5755a01c23c86dac93140d8502 100644 (file)
@@ -40,6 +40,7 @@
 #include "snomask.h"
 #include "match.h"
 #include "ircd.h"
+#include "privilege.h"
 
 /* other structs */
 struct Blacklist;
@@ -174,6 +175,8 @@ struct Client
 
        local_user_t *localClient;
        pre_client_t *preClient;
+
+       time_t large_ctcp_sent; /* ctcp to large group sent, relax flood checks */
 };
 
 struct LocalUser
@@ -277,10 +280,13 @@ struct LocalUser
                              applicable to this client */
 
        struct _ssl_ctl *ssl_ctl;               /* which ssl daemon we're associate with */
+       struct _ssl_ctl *z_ctl;                 /* second ctl for ssl+zlib */
        uint32_t localflags;
        struct ZipStats *zipstats;              /* zipstats */
        uint16_t cork_count;                    /* used for corking/uncorking connections */
        struct ev_entry *event;                 /* used for associated events */
+
+       struct PrivilegeSet *privset;           /* privset... */
 };
 
 struct PreClient
@@ -295,6 +301,8 @@ struct PreClient
 
        rb_dlink_list dnsbl_queries; /* list of struct BlacklistClient * */
        struct Blacklist *dnsbl_listed; /* first dnsbl where it's listed */
+
+       struct rb_sockaddr_storage lip; /* address of our side of the connection */
 };
 
 struct ListClient
@@ -307,12 +315,6 @@ struct ListClient
         */
 };
 
-struct exit_client_hook
-{
-       struct Client *client_p;
-       char exit_message[TOPICLEN];
-};
-
 /*
  * status macros.
  */
@@ -400,16 +402,14 @@ struct exit_client_hook
 #define FLAGS_FLOODDONE    0x0100      /* flood grace period over / reported */
 #define FLAGS_NORMALEX     0x0400      /* Client exited normally */
 #define FLAGS_SENDQEX      0x0800      /* Sendq exceeded */
-#define FLAGS_SERVLINK     0x10000     /* servlink has servlink process */
-#define FLAGS_MARK        0x20000      /* marked client */
-#define FLAGS_HIDDEN       0x40000     /* hidden server */
-#define FLAGS_EOB          0x80000     /* EOB */
-#define FLAGS_MYCONNECT           0x100000     /* MyConnect */
-#define FLAGS_IOERROR      0x200000    /* IO error */
-#define FLAGS_SERVICE     0x400000     /* network service */
-#define FLAGS_TGCHANGE     0x800000    /* we're allowed to clear something */
-#define FLAGS_DYNSPOOF     0x1000000   /* dynamic spoof, only opers see ip */
-#define FLAGS_EXUNKNOWN           0x2000000    /* too many unknowns exit.. */
+#define FLAGS_MARK        0x10000      /* marked client */
+#define FLAGS_HIDDEN       0x20000     /* hidden server */
+#define FLAGS_EOB          0x40000     /* EOB */
+#define FLAGS_MYCONNECT           0x80000      /* MyConnect */
+#define FLAGS_IOERROR      0x100000    /* IO error */
+#define FLAGS_SERVICE     0x200000     /* network service */
+#define FLAGS_TGCHANGE     0x400000    /* we're allowed to clear something */
+#define FLAGS_DYNSPOOF     0x800000    /* dynamic spoof, only opers see ip */
 
 /* flags for local clients, this needs stuff moved from above to here at some point */
 #define LFLAGS_SSL             0x00000001
@@ -484,8 +484,6 @@ struct exit_client_hook
 #define IsDynSpoof(x)          ((x)->flags & FLAGS_DYNSPOOF)
 #define SetDynSpoof(x)         ((x)->flags |= FLAGS_DYNSPOOF)
 #define ClearDynSpoof(x)       ((x)->flags &= ~FLAGS_DYNSPOOF)
-#define IsExUnknown(x)         ((x)->flags & FLAGS_EXUNKNOWN)
-#define SetExUnknown(x)                ((x)->flags |= FLAGS_EXUNKNOWN)
 
 /* local flags */