]> jfr.im git - irc/rqf/shadowircd.git/blobdiff - include/client.h
Pretty symlink logic for help files
[irc/rqf/shadowircd.git] / include / client.h
index f15444ca56d467376fb3d054c5da90027fbe5d33..aad68a6d0ce38e10e874b697acc0c408a32a4915 100644 (file)
@@ -38,8 +38,7 @@
 #include "channel.h"
 #include "res.h"
 #include "snomask.h"
-#include "irc_string.h"
-#include "sprintf_irc.h"
+#include "match.h"
 #include "ircd.h"
 
 /* other structs */
@@ -111,11 +110,11 @@ struct Server
 
 struct ZipStats
 {
-       unsigned long long in;\r
-       unsigned long long in_wire;\r
-       unsigned long long out;\r
-       unsigned long long out_wire;\r
-       double in_ratio;\r
+       unsigned long long in;
+       unsigned long long in_wire;
+       unsigned long long out;
+       unsigned long long out_wire;
+       double in_ratio;
        double out_ratio;
 };
 
@@ -231,6 +230,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;
@@ -374,12 +374,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)