mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 04:03:39 +00:00
8 lines
232 B
C++
8 lines
232 B
C++
#include <MC/NetworkIdentifier.hpp>
|
|
#include <MC/RakNet.hpp>
|
|
|
|
string NetworkIdentifier::getIP() {
|
|
string rv;
|
|
Global<RakNet::RakPeer>->getAdr(*this).ToString_New(true, rv.data(), ':');
|
|
return rv.substr(0, rv.find('|'));
|
|
} |