/
githubmirror
/
omim
Обзор
Документация
Войти
/
githubmirror
/
omim
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
storage/pinger.hpp
17 строк
341 B
Arsentiy Milchakov
[storage] MapFilesDownloader hierarchy is refactored. Server list and network logic are moved from Storage into MapFilesDownloader.
13 сен 2019, 18:26
13 сен 2019, 18:26
baf10d4
Код
Авторство
О чём код?
#pragma once #include "platform/safe_callback.hpp" #include <string> #include <vector> namespace storage { class Pinger { public: using Endpoints = std::vector<std::string>; // Returns list of available endpoints. Works synchronously. static Endpoints ExcludeUnavailableEndpoints(Endpoints const & urls); }; } // namespace storage