]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/client.h
Do not send two 792 numerics when changing a metadata from one non-empty value to...
[irc/rqf/shadowircd.git] / include / client.h
index 9308355a83721f165741fc88997ed3ecd5221022..8f370906898e23090290d03761c3ec738c3043c8 100644 (file)
@@ -38,9 +38,9 @@
 #include "channel.h"
 #include "res.h"
 #include "snomask.h"
-#include "irc_string.h"
-#include "sprintf_irc.h"
+#include "match.h"
 #include "ircd.h"
+#include "privilege.h"
 
 /* other structs */
 struct Blacklist;
@@ -92,10 +92,10 @@ struct User
 {
        rb_dlink_list channel;  /* chain of channel pointer blocks */
        rb_dlink_list invited;  /* chain of invite pointer blocks */
-       char *away;             /* pointer to away message */
        int refcnt;             /* Number of times this block is referenced */
 
        char suser[NICKLEN+1];
+       struct Dictionary *metadata;
 };
 
 struct Server
@@ -119,6 +119,12 @@ struct ZipStats
        double out_ratio;
 };
 
+struct MetadataEntry
+{
+       char key[NICKLEN+1];
+       char value[TOPICLEN];
+};
+
 struct Client
 {
        rb_dlink_node node;
@@ -169,8 +175,14 @@ struct Client
         */
        rb_dlink_list on_allow_list;
 
+       time_t first_received_message_time;
+       int received_number_of_privmsgs;
+       int flood_noticed;
+
        local_user_t *localClient;
        pre_client_t *preClient;
+
+       time_t large_ctcp_sent; /* ctcp to large group sent, relax flood checks */
 };
 
 struct LocalUser
@@ -190,9 +202,6 @@ struct LocalUser
        int oper_warn_count_down;       /* warn opers of this possible 
                                           spambot every time this gets to 0 */
        time_t last_caller_id_time;
-       time_t first_received_message_time;
-       int received_number_of_privmsgs;
-       int flood_noticed;
 
        time_t lasttime;        /* last time we parsed something */
        time_t firsttime;       /* time client was created */
@@ -231,6 +240,7 @@ struct LocalUser
         * agreed. lets get rid of it someday! --nenolod
         */
        char *passwd;
+       char *auth_user;
        char *opername; /* name of operator{} block being used or tried (challenge) */
        char *challenge;
        char *fullcaps;
@@ -276,10 +286,13 @@ struct LocalUser
                              applicable to this client */
 
        struct _ssl_ctl *ssl_ctl;               /* which ssl daemon we're associate with */
-       rb_uint32_t localflags;
+       struct _ssl_ctl *z_ctl;                 /* second ctl for ssl+zlib */
+       uint32_t localflags;
        struct ZipStats *zipstats;              /* zipstats */
-       rb_uint16_t cork_count;                 /* used for corking/uncorking connections */
+       uint16_t cork_count;                    /* used for corking/uncorking connections */
        struct ev_entry *event;                 /* used for associated events */
+
+       struct PrivilegeSet *privset;           /* privset... */
 };
 
 struct PreClient
@@ -294,6 +307,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
@@ -306,12 +321,6 @@ struct ListClient
         */
 };
 
-struct exit_client_hook
-{
-       struct Client *client_p;
-       char exit_message[TOPICLEN];
-};
-
 /*
  * status macros.
  */
@@ -374,12 +383,7 @@ struct exit_client_hook
  * ts stuff
  */
 #define TS_CURRENT     6
-
-#ifdef TS6_ONLY
 #define TS_MIN          6
-#else
-#define TS_MIN          3
-#endif
 
 #define TS_DOESTS       0x10000000
 #define DoesTS(x)       ((x)->tsinfo & TS_DOESTS)
@@ -404,16 +408,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
@@ -454,6 +456,7 @@ struct exit_client_hook
 
 #define CLICAP_MULTI_PREFIX    0x0001
 #define CLICAP_SASL            0x0002
+#define CLICAP_PRESENCE                0x0004
 
 /*
  * flags macros.
@@ -488,8 +491,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 */
 
@@ -574,7 +575,6 @@ extern void check_dlines(void);
 extern void check_xlines(void);
 
 extern const char *get_client_name(struct Client *client, int show_ip);
-extern const char *get_server_name(struct Client *client, int show_ip);
 extern const char *log_client_name(struct Client *, int);
 extern int is_remote_connect(struct Client *);
 extern void init_client(void);
@@ -614,4 +614,8 @@ extern char *generate_uid(void);
 void allocate_away(struct Client *);
 void free_away(struct Client *);
 
+const char *get_metadata(struct Client *, const char *);
+void set_metadata(struct Client *, const char *, const char *);
+void delete_metadata(struct Client *, const char *);
+
 #endif /* INCLUDED_client_h */