diff options
author | Mattes D <github@xoft.cz> | 2014-09-30 20:48:40 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-09-30 20:48:40 +0200 |
commit | 5de27e7edf29b2f79e647ad35d4a665900b83ac8 (patch) | |
tree | 6d19e415f5c7cacab867c5dff2855627fa6169fd /src/Protocol/Protocol18x.h | |
parent | Merge pull request #1427 from mc-server/chestcarts (diff) | |
parent | Fixed a missing semicolon. (diff) | |
download | cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar.gz cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar.bz2 cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar.lz cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar.xz cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.tar.zst cuberite-5de27e7edf29b2f79e647ad35d4a665900b83ac8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Protocol/Protocol18x.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Protocol/Protocol18x.h b/src/Protocol/Protocol18x.h index acc167a6d..8c0b77a21 100644 --- a/src/Protocol/Protocol18x.h +++ b/src/Protocol/Protocol18x.h @@ -312,6 +312,10 @@ protected: void HandlePacketWindowClick (cByteBuffer & a_ByteBuffer); void HandlePacketWindowClose (cByteBuffer & a_ByteBuffer); + /** Parses Vanilla plugin messages into specific ClientHandle calls. + The message payload is still in the bytebuffer, the handler reads it specifically for each handled channel */ + void HandleVanillaPluginMessage(cByteBuffer & a_ByteBuffer, const AString & a_Channel); + /** Sends the data to the client, encrypting them if needed. */ virtual void SendData(const char * a_Data, size_t a_Size) override; |