Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / ClientSocket.h
index 9bcdaffccd3aa2b0c1117e5fd4b1df588682ecc0..a5ba352067377e1323ab4fa252fef3fe51856dbb 100644 (file)
@@ -1,5 +1,5 @@
 /* ClientSocket.h - NeonServ v5.3
- * Copyright (C) 2011  Philipp Kreil (pk910)
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -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;