]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/client.h
ssl sync with http://hg.angelforce.ru/charybdis-old
[irc/rqf/shadowircd.git] / include / client.h
index 943098e6fed6f4ff3ff6560ec2909f7c36607e71..edf585f5a4f78f4f537f25ec3bf6d95fe10b1cd2 100644 (file)
@@ -233,7 +233,7 @@ struct LocalUser
        conf_item_t *att_conf;          /* attached conf */
        struct server_conf *att_sconf;
 
-       struct irc_sockaddr_storage ip;
+       struct rb_sockaddr_storage ip;
        time_t last_nick_change;
        int number_of_nick_changes;
 
@@ -254,16 +254,7 @@ struct LocalUser
        /* time challenge response is valid for */
        time_t chal_time;
 
-       int ctrlfd;             /* For servers:
-                                  control fd used for sending commands
-                                  to servlink */
-
-       struct SlinkRpl slinkrpl;       /* slink reply being parsed */
-       unsigned char *slinkq;  /* sendq for control data */
-       int slinkq_ofs;         /* ofset into slinkq */
-       int slinkq_len;         /* length remaining after slinkq_ofs */
-
-       struct ZipStats zipstats;
+       struct DNSQuery *dnsquery; /* for outgoing server's name lookup */
 
        time_t last_away;       /* Away since... */
        time_t last;
@@ -296,6 +287,12 @@ struct LocalUser
 
        char *mangledhost; /* non-NULL if host mangling module loaded and
                              applicable to this client */
+
+       struct _ssl_ctl *ssl_ctl;               /* which ssl daemon we're associate with */\r
+       rb_uint32_t localflags;\r
+       struct ZipStats *zipstats;              /* zipstats */
+       rb_uint16_t cork_count;                 /* used for corking/uncorking connections */
+       struct ev_entry *event;                 /* used for associated events */
 };
 
 struct PreClient
@@ -431,6 +428,11 @@ struct exit_client_hook
 #define FLAGS_DYNSPOOF     0x1000000   /* dynamic spoof, only opers see ip */
 #define FLAGS_EXUNKNOWN           0x2000000    /* too many unknowns exit.. */
 
+/* flags for local clients, this needs stuff moved from above to here at some point */\r
+#define LFLAGS_SSL             0x00000001\r
+#define LFLAGS_FLUSH           0x00000002\r
+#define LFLAGS_CORK            0x00000004
+
 /* umodes, settable flags */
 /* lots of this moved to snomask -- jilles */
 #define UMODE_SERVNOTICE   0x0001      /* server notices */
@@ -504,6 +506,16 @@ struct exit_client_hook
 #define IsExUnknown(x)         ((x)->flags & FLAGS_EXUNKNOWN)
 #define SetExUnknown(x)                ((x)->flags |= FLAGS_EXUNKNOWN)
 
+/* local flags */\r
+\r
+#define IsSSL(x)               ((x)->localClient->localflags & LFLAGS_SSL)\r
+#define SetSSL(x)              ((x)->localClient->localflags |= LFLAGS_SSL)\r
+#define ClearSSL(x)            ((x)->localClient->localflags &= ~LFLAGS_SSL)\r
+\r
+#define IsFlush(x)             ((x)->localClient->localflags & LFLAGS_FLUSH)\r
+#define SetFlush(x)            ((x)->localClient->localflags |= LFLAGS_FLUSH)\r
+#define ClearFlush(x)          ((x)->localClient->localflags &= ~LFLAGS_FLUSH)
+
 /* oper flags */
 #define MyOper(x)               (MyConnect(x) && IsOper(x))
 
@@ -557,6 +569,11 @@ struct exit_client_hook
 #define IsFloodDone(x)          ((x)->flags & FLAGS_FLOODDONE)
 #define SetFloodDone(x)         ((x)->flags |= FLAGS_FLOODDONE)
 
+/* These also operate on the uplink from which it came */\r
+#define IsCork(x)              (MyConnect(x) ? (x)->localClient->cork_count : (x)->from->localClient->cork_count)\r
+#define SetCork(x)             (MyConnect(x) ? (x)->localClient->cork_count++ : (x)->from->localClient->cork_count++ )\r
+#define ClearCork(x)           (MyConnect(x) ? (x)->localClient->cork_count-- : (x)->from->localClient->cork_count--)
+
 /*
  * definitions for get_client_name
  */