mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
20 lines
412 B
C++
20 lines
412 B
C++
#ifndef NEWLAUNCHER_PING_HPP
|
|
#define NEWLAUNCHER_PING_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
|
|
#define PING_UNREACHABLE 999
|
|
|
|
unsigned int PingRakNetServer(const char *addr, unsigned short port);
|
|
|
|
struct ServerExtendedData
|
|
{
|
|
std::vector<std::string> players;
|
|
std::vector<std::string> plugins;
|
|
};
|
|
|
|
ServerExtendedData getExtendedData(const char *addr, unsigned short port);
|
|
|
|
#endif //NEWLAUNCHER_PING_HPP
|