We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6220e5 commit 83a3881Copy full SHA for 83a3881
KBEngine.cs
@@ -78,6 +78,9 @@ public enum CLIENT_TYPE
78
private byte[] _serverdatas = new byte[0];
79
private byte[] _clientdatas = new byte[0];
80
81
+ // 通信协议加密,blowfish协议
82
+ private byte[] _encryptedKey = new byte[0];
83
+
84
// 服务端与客户端的版本号以及协议MD5
85
public string serverVersion = "";
86
public string clientVersion = "0.4.0";
@@ -352,7 +355,7 @@ public void hello()
352
355
353
356
bundle.writeString(clientVersion);
354
357
bundle.writeString(clientScriptVersion);
- bundle.writeBlob(new byte[0]);
358
+ bundle.writeBlob(_encryptedKey);
359
bundle.send(_networkInterface);
360
}
361
0 commit comments