diff options
Diffstat (limited to 'source/Protocol132.h')
-rw-r--r-- | source/Protocol132.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/source/Protocol132.h b/source/Protocol132.h new file mode 100644 index 000000000..af3e78ecc --- /dev/null +++ b/source/Protocol132.h @@ -0,0 +1,35 @@ +
+// Protocol132.h
+
+// Interfaces to the cProtocol132 class representing the release 1.3.2 protocol (#39)
+
+
+
+
+
+#pragma once
+
+#include "Protocol125.h"
+
+
+
+
+
+class cProtocol132 :
+ public cProtocol125
+{
+ typedef cProtocol125 super;
+public:
+
+ cProtocol132(cClientHandle * a_Client);
+
+ /// Called when client sends some data:
+ virtual void DataReceived(const char * a_Data, int a_Size) override;
+
+ // Modified packets:
+ virtual int ParseHandshake(void) override;
+} ;
+
+
+
+
|