danicoin/src/Rpc/RpcServerConfig.h

26 lines
562 B
C
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 10:48:45 +00:00
#pragma once
#include <boost/program_options.hpp>
2014-09-15 10:48:45 +00:00
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2015-05-27 12:08:46 +00:00
class RpcServerConfig {
2014-09-15 10:48:45 +00:00
public:
2015-05-27 12:08:46 +00:00
RpcServerConfig();
static void initOptions(boost::program_options::options_description& desc);
void init(const boost::program_options::variables_map& options);
2015-05-27 12:08:46 +00:00
std::string getBindAddress() const;
std::string bindIp;
uint16_t bindPort;
2014-09-15 10:48:45 +00:00
};
}