IServerBrowser

C++
struct IServerBrowser : public INetworkInterface {
};
File

INetworkService.h

IServerBrowser::~IServerBrowser Destructor
C++
virtual ~IServerBrowser();
IServerBrowser::BrowseForServer Method (char*, uint16)
C++
virtual void BrowseForServer(const char* addr, uint16 port) = 0;
IServerBrowser::BrowseForServer Method (uint32, uint16)
C++
virtual void BrowseForServer(uint32 ip, uint16 port) = 0;
IServerBrowser::CheckDirectConnect Method
C++
virtual void CheckDirectConnect(int id, uint16 port) = 0;
IServerBrowser::GetPendingQueryCount Method
C++
virtual int GetPendingQueryCount() = 0;
IServerBrowser::GetServerCount Method
C++
virtual int GetServerCount() = 0;
IServerBrowser::SendNatCookie Method
C++
virtual void SendNatCookie(uint32 ip, uint16 port, int cookie) = 0;
IServerBrowser::SetListener Method
C++
virtual void SetListener(IServerListener* lst) = 0;
IServerBrowser::Start Method
C++
virtual void Start(bool browseLAN) = 0;
IServerBrowser::Stop Method
C++
virtual void Stop() = 0;
IServerBrowser::Update Method
C++
virtual void Update() = 0;
IServerBrowser::UpdateServerInfo Method
C++
virtual void UpdateServerInfo(int id) = 0;