diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-06 10:34:08 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-06 10:34:08 +0200 |
commit | 9696aa242c88e0c84539b76e5fdd5f2f159dddf9 (patch) | |
tree | c16d17de14f045f9e10fb05af567ba3839a933c9 /ProtoProxy/Connection.h | |
parent | ClientHandle: added an overflow buffer for outgoing data, it fixes the "bad packet id" problem with 1.3.2. (diff) | |
download | cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar.gz cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar.bz2 cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar.lz cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar.xz cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.tar.zst cuberite-9696aa242c88e0c84539b76e5fdd5f2f159dddf9.zip |
Diffstat (limited to '')
-rw-r--r-- | ProtoProxy/Connection.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ProtoProxy/Connection.h b/ProtoProxy/Connection.h index 6c55cb9bb..3ce2a9c5c 100644 --- a/ProtoProxy/Connection.h +++ b/ProtoProxy/Connection.h @@ -108,6 +108,7 @@ protected: bool HandleClientPlayerPositionLook(void);
// Packet handling, server-side:
+ bool HandleServerBlockChange(void);
bool HandleServerChatMessage(void);
bool HandleServerCompass(void);
bool HandleServerEncryptionKeyRequest(void);
@@ -117,6 +118,7 @@ protected: bool HandleServerKick(void);
bool HandleServerLogin(void);
bool HandleServerMapChunk(void);
+ bool HandleServerMultiBlockChange(void);
bool HandleServerPlayerAbilities(void);
bool HandleServerPlayerListItem(void);
bool HandleServerPlayerPositionLook(void);
|