mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
53e9457965
Also make the whole process more robust against failures, retry finding the best serverlist if the current one is broken.
31 lines
862 B
C++
31 lines
862 B
C++
#ifndef ENGINE_CLIENT_SERVERBROWSER_HTTP_H
|
|
#define ENGINE_CLIENT_SERVERBROWSER_HTTP_H
|
|
#include <base/system.h>
|
|
|
|
class CServerInfo;
|
|
class IConsole;
|
|
class IEngine;
|
|
class IStorage;
|
|
|
|
class IServerBrowserHttp
|
|
{
|
|
public:
|
|
virtual ~IServerBrowserHttp() {}
|
|
|
|
virtual void Update() = 0;
|
|
|
|
virtual bool IsRefreshing() = 0;
|
|
virtual void Refresh() = 0;
|
|
|
|
virtual bool GetBestUrl(const char **pBestUrl) const = 0;
|
|
|
|
virtual int NumServers() const = 0;
|
|
virtual const NETADDR &ServerAddress(int Index) const = 0;
|
|
virtual void Server(int Index, NETADDR *pAddr, CServerInfo *pInfo) const = 0;
|
|
virtual int NumLegacyServers() const = 0;
|
|
virtual const NETADDR &LegacyServer(int Index) const = 0;
|
|
};
|
|
|
|
IServerBrowserHttp *CreateServerBrowserHttp(IEngine *pEngine, IConsole *pConsole, IStorage *pStorage, const char *pPreviousBestUrl);
|
|
#endif // ENGINE_CLIENT_SERVERBROWSER_HTTP_H
|