resolveAddress network command

This commit is contained in:
momo5502 2016-05-15 19:26:39 +02:00
parent 8305115b39
commit 2f8a4dd149

View File

@ -300,6 +300,12 @@ namespace Components
// Install packet deploy hook
Utils::Hook::RedirectJump(0x5AA713, Network::DeployPacketStub);
// For /dev/urandom :P
Network::Handle("resolveAddress", [] (Address address, std::string data)
{
Network::SendRaw(address, address.GetString());
});
}
Network::~Network()