/* XMRig * Copyright 2010 Jeff Garzik * Copyright 2012-2014 pooler * Copyright 2014 Lucas Jones * Copyright 2014-2016 Wolf9466 * Copyright 2016 Jay D Dee * Copyright 2016-2017 XMRig * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef __URL_H__ #define __URL_H__ #include class Url { public: constexpr static const char *kDefaultPassword = "x"; constexpr static const char *kDefaultUser = "x"; constexpr static uint16_t kDefaultPort = 3333; constexpr static uint16_t kDefaultProxyPort = 8080; Url(); Url(const char *url); Url(const char *host, uint16_t port, const char *user = nullptr, const char *password = nullptr, bool keepAlive = false, bool nicehash = false ); ~Url(); inline bool isKeepAlive() const { return m_keepAlive; } inline bool isNicehash() const { return m_nicehash; } inline bool isValid() const { return m_host && m_port > 0; } inline bool hasKeystream() const { return m_keystream; } inline const char *host() const { return isProxyed() ? proxyHost() : finalHost(); } inline const char *password() const { return m_password ? m_password : kDefaultPassword; } inline const char *user() const { return m_user ? m_user : kDefaultUser; } inline uint16_t port() const { return isProxyed() ? proxyPort() : finalPort(); } inline bool isProxyed() const { return proxyHost(); } inline const char* finalHost() const { return m_host; } inline uint16_t finalPort() const { return m_port; } inline const char* proxyHost() const { return m_proxy_host; } inline uint16_t proxyPort() const { return m_proxy_port; } inline void setKeepAlive(bool keepAlive) { m_keepAlive = keepAlive; } inline void setNicehash(bool nicehash) { m_nicehash = nicehash; } bool parse(const char *url); bool setUserpass(const char *userpass); void applyExceptions(); void setPassword(const char *password); void setUser(const char *user); void copyKeystream(char *keystreamDest, const size_t keystreamLen) const; Url &operator=(const Url *other); private: bool m_keepAlive; bool m_nicehash; char *m_host; char *m_password; char *m_user; uint16_t m_port; char* m_proxy_host; uint16_t m_proxy_port; char* m_keystream; }; #endif /* __URL_H__ */