changed network protocol version from 1.2.0 to 2.0.0
[rocksndiamonds.git] / src / netserv.h
index e0815bd06a1754ae20c7f52e8dd81959dc1a609e..463b202f0bae28324f7cf5ba0cd4070d901bf12d 100644 (file)
@@ -16,8 +16,8 @@
 
 #define DEFAULT_SERVER_PORT    19504
 
-#define PROTOCOL_VERSION_1     1
-#define PROTOCOL_VERSION_2     2
+#define PROTOCOL_VERSION_1     2
+#define PROTOCOL_VERSION_2     0
 #define PROTOCOL_VERSION_3     0
 
 #define OP_PROTOCOL_VERSION    1
 
 #define MAX_BUFFER_SIZE                4096
 
-#if defined(TARGET_SDL)
 int NetworkServerThread(void *);
-#endif
-
 void NetworkServer(int, int);
 
 #endif