Files
xmrig/src/net/Url.h

79 lines
2.9 KiB
C
Raw Normal View History

2017-04-15 09:02:08 +03:00
/* XMRig
* Copyright 2010 Jeff Garzik <jgarzik@pobox.com>
* Copyright 2012-2014 pooler <pooler@litecoinpool.org>
* Copyright 2014 Lucas Jones <https://github.com/lucasjones>
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet>
* Copyright 2016 Jay D Dee <jayddee246@gmail.com>
2018-03-07 16:38:58 +07:00
* Copyright 2017-2018 XMR-Stak <https://github.com/fireice-uk>, <https://github.com/psychocrypt>
* Copyright 2016-2018 XMRig <https://github.com/xmrig>, <support@xmrig.com>
2017-04-15 09:02:08 +03:00
*
* 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 <http://www.gnu.org/licenses/>.
*/
2017-06-04 20:52:21 +03:00
#ifndef __URL_H__
#define __URL_H__
#include <stdint.h>
class Url
{
public:
2017-06-26 21:13:05 +03:00
constexpr static const char *kDefaultPassword = "x";
constexpr static const char *kDefaultUser = "x";
constexpr static uint16_t kDefaultPort = 3333;
2017-06-07 22:34:23 +03:00
Url();
2017-06-04 20:52:21 +03:00
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, bool monero = true);
2017-06-04 20:52:21 +03:00
~Url();
2017-06-26 21:13:05 +03:00
inline bool isKeepAlive() const { return m_keepAlive; }
inline bool isMonero() const { return m_monero; }
inline bool isNicehash() const { return m_nicehash; }
2017-06-26 21:13:05 +03:00
inline bool isValid() const { return m_host && m_port > 0; }
inline const char *host() const { return m_host; }
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 m_port; }
inline void setKeepAlive(bool keepAlive) { m_keepAlive = keepAlive; }
inline void setMonero(bool monero) { m_monero = monero; }
2017-06-26 21:13:05 +03:00
inline void setNicehash(bool nicehash) { m_nicehash = nicehash; }
2017-06-04 20:52:21 +03:00
2017-06-26 21:13:05 +03:00
bool parse(const char *url);
2017-06-27 06:32:17 +03:00
bool setUserpass(const char *userpass);
2018-03-07 16:38:58 +07:00
const char *url() const;
void applyExceptions();
void setPassword(const char *password);
void setUser(const char *user);
2018-03-07 16:38:58 +07:00
bool operator==(const Url &other) const;
Url &operator=(const Url *other);
2017-06-04 20:52:21 +03:00
private:
2018-03-07 16:38:58 +07:00
bool parseIPv6(const char *addr);
2017-06-26 21:13:05 +03:00
bool m_keepAlive;
bool m_monero;
2017-06-26 21:13:05 +03:00
bool m_nicehash;
2017-06-04 20:52:21 +03:00
char *m_host;
2017-06-26 21:13:05 +03:00
char *m_password;
char *m_user;
2018-03-07 16:38:58 +07:00
mutable char *m_url;
2017-06-04 20:52:21 +03:00
uint16_t m_port;
};
#endif /* __URL_H__ */