summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-09-27 15:24:15 +0200
committerworktycho <work.tycho@gmail.com>2015-09-27 15:24:15 +0200
commit11c1686092029409ce39fccd2f6ad900b0be66ae (patch)
treef9dba50f552a0c843ec20492b310553cb201e77e
parentMerge pull request #2501 from cuberite/APIDumpCheck (diff)
parentMerge branch 'master' into master (diff)
downloadcuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar.gz
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar.bz2
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar.lz
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar.xz
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.tar.zst
cuberite-11c1686092029409ce39fccd2f6ad900b0be66ae.zip
-rw-r--r--src/Protocol/Protocol18x.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp
index d5ecb8023..ea71103f7 100644
--- a/src/Protocol/Protocol18x.cpp
+++ b/src/Protocol/Protocol18x.cpp
@@ -109,6 +109,20 @@ cProtocol180::cProtocol180(cClientHandle * a_Client, const AString & a_ServerAdd
m_IsEncrypted(false),
m_LastSentDimension(dimNotSet)
{
+
+ // BungeeCord handling:
+ // If BC is setup with ip_forward == true, it sends additional data in the login packet's ServerAddress field:
+ // hostname\00ip-address\00uuid\00profile-properties-as-json
+ AStringVector Params;
+ if (cRoot::Get()->GetServer()->ShouldAllowBungeeCord() && SplitZeroTerminatedStrings(a_ServerAddress, Params) && (Params.size() == 4))
+ {
+ LOGD("Player at %s connected via BungeeCord", Params[1].c_str());
+ m_ServerAddress = Params[0];
+ m_Client->SetIPString(Params[1]);
+ m_Client->SetUUID(cMojangAPI::MakeUUIDShort(Params[2]));
+ m_Client->SetProperties(Params[3]);
+ }
+
// Create the comm log file, if so requested:
if (g_ShouldLogCommIn || g_ShouldLogCommOut)
{