changed network protocol version from 1.2.0 to 2.0.0
[rocksndiamonds.git] / src / netserv.h
index 5177fb4ab2aca8acb48d864c1d59767c97fad367..463b202f0bae28324f7cf5ba0cd4070d901bf12d 100644 (file)
@@ -1,15 +1,13 @@
-/***********************************************************
-*  Rocks'n'Diamonds -- McDuffin Strikes Back!              *
-*----------------------------------------------------------*
-*  (c) 1995-98 Artsoft Entertainment                       *
-*              Holger Schemel                              *
-*              Oststrasse 11a                              *
-*              33604 Bielefeld                             *
-*              phone: ++49 +521 290471                     *
-*              email: aeglos@valinor.owl.de                *
-*----------------------------------------------------------*
-*  netserv.h                                               *
-***********************************************************/
+// ============================================================================
+// Rocks'n'Diamonds - McDuffin Strikes Back!
+// ----------------------------------------------------------------------------
+// (c) 1995-2014 by Artsoft Entertainment
+//                         Holger Schemel
+//                 info@artsoft.org
+//                 http://www.artsoft.org/
+// ----------------------------------------------------------------------------
+// netserv.h
+// ============================================================================
 
 #ifndef NETSERV_H
 #define NETSERV_H
@@ -18,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 OP_PAUSE_PLAYING       9
 #define OP_CONTINUE_PLAYING    10
 #define OP_STOP_PLAYING                11
-#define OP_MOVE_FIGURE         12
+#define OP_MOVE_PLAYER         12
 #define OP_BROADCAST_MESSAGE   13
 
 #define MAX_BUFFER_SIZE                4096
 
+int NetworkServerThread(void *);
 void NetworkServer(int, int);
 
 #endif