diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-14 19:13:56 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-14 19:13:56 +0200 |
commit | 049557e60cfe231e13e2d7ae26010407af71f35e (patch) | |
tree | 47d5c424cb7e1abbffe7b85fe2191ca657dd6e90 /ProtoProxy/Connection.h | |
parent | Merged in a patch for sounds by l0udPL (diff) | |
download | cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar.gz cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar.bz2 cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar.lz cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar.xz cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.tar.zst cuberite-049557e60cfe231e13e2d7ae26010407af71f35e.zip |
Diffstat (limited to 'ProtoProxy/Connection.h')
-rw-r--r-- | ProtoProxy/Connection.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ProtoProxy/Connection.h b/ProtoProxy/Connection.h index c6417ae41..c3ed5472e 100644 --- a/ProtoProxy/Connection.h +++ b/ProtoProxy/Connection.h @@ -99,7 +99,9 @@ protected: // Packet handling, client-side:
bool HandleClientAnimation(void);
bool HandleClientBlockPlace(void);
+ bool HandleClientChatMessage(void);
bool HandleClientClientStatuses(void);
+ bool HandleClientCreativeInventoryAction(void);
bool HandleClientEncryptionKeyResponse(void);
bool HandleClientHandshake(void);
bool HandleClientKeepAlive(void);
@@ -111,6 +113,9 @@ protected: bool HandleClientPlayerPositionLook(void);
bool HandleClientSlotSelect(void);
bool HandleClientUpdateSign(void);
+ bool HandleClientUseEntity(void);
+ bool HandleClientWindowClick(void);
+ bool HandleClientWindowClose(void);
// Packet handling, server-side:
bool HandleServerBlockChange(void);
@@ -127,9 +132,11 @@ protected: bool HandleServerPlayerAbilities(void);
bool HandleServerPlayerListItem(void);
bool HandleServerPlayerPositionLook(void);
+ bool HandleServerSetSlot(void);
bool HandleServerTimeUpdate(void);
bool HandleServerUpdateHealth(void);
bool HandleServerUpdateSign(void);
+ bool HandleServerWindowClose(void);
bool HandleServerWindowContents(void);
/// Parses the slot data in a_Buffer into item description; returns true if successful, false if not enough data
|