summaryrefslogtreecommitdiffstats
path: root/ProtoProxy/Connection.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-20 13:36:09 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-09-20 13:36:09 +0200
commit2b35b9a724499bd09f0829467827c9ed0d8801e4 (patch)
tree72b71248d979f2216c752674affaadf71832f7aa /ProtoProxy/Connection.h
parentProtoProxy: Added the PACKET_UPDATE_TILE_ENTITY packet handling (diff)
downloadcuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar.gz
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar.bz2
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar.lz
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar.xz
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.tar.zst
cuberite-2b35b9a724499bd09f0829467827c9ed0d8801e4.zip
Diffstat (limited to '')
-rw-r--r--ProtoProxy/Connection.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/ProtoProxy/Connection.h b/ProtoProxy/Connection.h
index aa73182ff..8fc665b4e 100644
--- a/ProtoProxy/Connection.h
+++ b/ProtoProxy/Connection.h
@@ -118,10 +118,12 @@ protected:
bool HandleClientWindowClose(void);
// Packet handling, server-side:
+ bool HandleServerBlockAction(void);
bool HandleServerBlockChange(void);
bool HandleServerChangeGameState(void);
bool HandleServerChatMessage(void);
bool HandleServerCompass(void);
+ bool HandleServerDestroyEntities(void);
bool HandleServerEncryptionKeyRequest(void);
bool HandleServerEncryptionKeyResponse(void);
bool HandleServerEntity(void);
@@ -140,11 +142,13 @@ protected:
bool HandleServerMapChunk(void);
bool HandleServerMapChunkBulk(void);
bool HandleServerMultiBlockChange(void);
+ bool HandleServerNamedSoundEffect(void);
bool HandleServerPlayerAbilities(void);
bool HandleServerPlayerListItem(void);
bool HandleServerPlayerPositionLook(void);
bool HandleServerSetExperience(void);
bool HandleServerSetSlot(void);
+ bool HandleServerSoundEffect(void);
bool HandleServerSpawnMob(void);
bool HandleServerSpawnObjectVehicle(void);
bool HandleServerSpawnPainting(void);
@@ -155,6 +159,7 @@ protected:
bool HandleServerUpdateTileEntity(void);
bool HandleServerWindowClose(void);
bool HandleServerWindowContents(void);
+ bool HandleServerWindowOpen(void);
/// Parses the slot data in a_Buffer into item description; returns true if successful, false if not enough data
bool ParseSlot(cByteBuffer & a_Buffer, AString & a_ItemDesc);