diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-07 22:15:06 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-07 22:15:06 +0200 |
commit | 4f052b2650a3b8ada0c6912067b1b8237382184b (patch) | |
tree | 755c832bbb06641be7f3a491c0100d9359782e5a /ProtoProxy/Connection.h | |
parent | Fixed profiling to work under the new project layout (diff) | |
download | cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar.gz cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar.bz2 cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar.lz cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar.xz cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.tar.zst cuberite-4f052b2650a3b8ada0c6912067b1b8237382184b.zip |
Diffstat (limited to 'ProtoProxy/Connection.h')
-rw-r--r-- | ProtoProxy/Connection.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ProtoProxy/Connection.h b/ProtoProxy/Connection.h index 3ce2a9c5c..c6417ae41 100644 --- a/ProtoProxy/Connection.h +++ b/ProtoProxy/Connection.h @@ -97,15 +97,20 @@ protected: bool DecodeServersPackets(const char * a_Data, int a_Size);
// Packet handling, client-side:
+ bool HandleClientAnimation(void);
+ bool HandleClientBlockPlace(void);
bool HandleClientClientStatuses(void);
bool HandleClientEncryptionKeyResponse(void);
bool HandleClientHandshake(void);
+ bool HandleClientKeepAlive(void);
bool HandleClientLocaleAndView(void);
bool HandleClientPing(void);
bool HandleClientPlayerLook(void);
bool HandleClientPlayerOnGround(void);
bool HandleClientPlayerPosition(void);
bool HandleClientPlayerPositionLook(void);
+ bool HandleClientSlotSelect(void);
+ bool HandleClientUpdateSign(void);
// Packet handling, server-side:
bool HandleServerBlockChange(void);
@@ -124,6 +129,7 @@ protected: bool HandleServerPlayerPositionLook(void);
bool HandleServerTimeUpdate(void);
bool HandleServerUpdateHealth(void);
+ bool HandleServerUpdateSign(void);
bool HandleServerWindowContents(void);
/// Parses the slot data in a_Buffer into item description; returns true if successful, false if not enough data
|