X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2FClientSocket.h;fp=src%2FClientSocket.h;h=bafc003390b79238793c52b088dc7b30a5fd2bca;hb=37a4c120f59e3a65d401d23e9469958e4181fcf4;hp=9bcdaffccd3aa2b0c1117e5fd4b1df588682ecc0;hpb=0b17bccd2d7fbef5652168d11d4f0af1f41252d3;p=NeonServV5.git diff --git a/src/ClientSocket.h b/src/ClientSocket.h index 9bcdaff..bafc003 100644 --- a/src/ClientSocket.h +++ b/src/ClientSocket.h @@ -27,6 +27,8 @@ #define SOCKET_FLAG_RECONNECT 0x20 #define SOCKET_FLAG_SSL 0x40 #define SOCKET_FLAG_HAVE_SSL 0x80 +#define SOCKET_FLAG_QUITTED 0x100 +#define SOCKET_FLAG_FAST_JUMP 0x200 #define BUF_SIZ 512 @@ -36,7 +38,7 @@ struct SSLConnection; struct ClientSocket { int sock; - unsigned char flags; + unsigned int flags; char buffer[BUF_SIZ*2]; //we need to store up to 2 full commands at once unsigned int bufferpos; char *host;