/* */ #ifndef D_AUTH_RESOLVER_H #define D_AUTH_RESOLVER_H #include "common.h" #include #include namespace aria2 { class AuthConfig; class AuthResolver { public: virtual ~AuthResolver() = default; virtual std::unique_ptr resolveAuthConfig(const std::string& hostname) = 0; }; } // namespace aria2 #endif // D_AUTH_RESOLVER_H