/* This file is part of cpp-ethereum. cpp-ethereum 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. cpp-ethereum 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 cpp-ethereum. If not, see . */ /** @file WebThree.cpp * @author Gav Wood * @date 2014 */ #include "WebThree.h" #include #include #include #include #include #include #include #include using namespace std; using namespace dev; using namespace dev::p2p; using namespace dev::eth; using namespace dev::shh; WebThreeDirect::WebThreeDirect(std::string const& _clientVersion, std::string const& _dbPath, bool _forceClean, std::set const& _interfaces, NetworkPreferences const& _n): m_clientVersion(_clientVersion), m_net(_clientVersion, _n) { if (_dbPath.size()) Defaults::setDBPath(_dbPath); if (_interfaces.count("eth")) m_ethereum.reset(new eth::Client(&m_net, _dbPath, _forceClean)); if (_interfaces.count("shh")) m_whisper = m_net.registerCapability(new WhisperHost); } WebThreeDirect::~WebThreeDirect() { } std::vector WebThreeDirect::peers() { return m_net.peers(); } size_t WebThreeDirect::peerCount() const { return m_net.peerCount(); } void WebThreeDirect::setIdealPeerCount(size_t _n) { return m_net.setIdealPeerCount(_n); } bytes WebThreeDirect::saveNodes() { return m_net.saveNodes(); } void WebThreeDirect::restoreNodes(bytesConstRef _saved) { return m_net.restoreNodes(_saved); } void WebThreeDirect::connect(std::string const& _seedHost, unsigned short _port) { m_net.connect(_seedHost, _port); }