2014-01-22 14:08:18 +00:00
|
|
|
/*
|
|
|
|
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
|
2014-02-06 18:53:46 +00:00
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
2014-01-22 14:08:18 +00:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2014-02-16 10:20:55 +00:00
|
|
|
cpp-ethereum is distributed in the hope that it will be useful,
|
2014-01-22 14:08:18 +00:00
|
|
|
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
|
2014-02-16 10:41:15 +00:00
|
|
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-22 14:08:18 +00:00
|
|
|
*/
|
|
|
|
/** @file peer.cpp
|
|
|
|
* @author Gav Wood <i@gavwood.com>
|
|
|
|
* @date 2014
|
|
|
|
* Peer Network test functions.
|
|
|
|
*/
|
|
|
|
|
2014-02-09 11:37:13 +00:00
|
|
|
#include <chrono>
|
|
|
|
#include <thread>
|
2014-02-19 22:16:20 +00:00
|
|
|
#include <boost/filesystem/operations.hpp>
|
2014-01-22 17:56:03 +00:00
|
|
|
#include <BlockChain.h>
|
2014-01-22 14:08:18 +00:00
|
|
|
#include <PeerNetwork.h>
|
|
|
|
using namespace std;
|
|
|
|
using namespace eth;
|
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
|
|
|
|
int peerTest(int argc, char** argv)
|
|
|
|
{
|
2014-01-22 14:40:45 +00:00
|
|
|
short listenPort = 30303;
|
|
|
|
string remoteHost;
|
|
|
|
short remotePort = 30303;
|
2014-01-22 14:08:18 +00:00
|
|
|
|
2014-01-22 14:40:45 +00:00
|
|
|
for (int i = 1; i < argc; ++i)
|
2014-01-22 14:08:18 +00:00
|
|
|
{
|
2014-01-22 14:40:45 +00:00
|
|
|
string arg = argv[i];
|
|
|
|
if (arg == "-l" && i + 1 < argc)
|
2014-02-11 19:13:31 +00:00
|
|
|
listenPort = (short)atoi(argv[++i]);
|
2014-01-22 14:40:45 +00:00
|
|
|
else if (arg == "-r" && i + 1 < argc)
|
|
|
|
remoteHost = argv[++i];
|
|
|
|
else if (arg == "-p" && i + 1 < argc)
|
2014-02-11 19:13:31 +00:00
|
|
|
remotePort = (short)atoi(argv[++i]);
|
2014-01-22 14:40:45 +00:00
|
|
|
else
|
|
|
|
remoteHost = argv[i];
|
|
|
|
}
|
2014-01-22 14:08:18 +00:00
|
|
|
|
2014-02-19 22:16:20 +00:00
|
|
|
BlockChain ch(boost::filesystem::temp_directory_path().string());
|
2014-01-22 23:18:12 +00:00
|
|
|
PeerServer pn("Test", ch, 0, listenPort);
|
2014-01-22 14:08:18 +00:00
|
|
|
|
2014-01-22 14:40:45 +00:00
|
|
|
if (!remoteHost.empty())
|
|
|
|
pn.connect(remoteHost, remotePort);
|
2014-01-22 14:08:18 +00:00
|
|
|
|
2014-01-22 15:01:39 +00:00
|
|
|
for (int i = 0; ; ++i)
|
2014-01-22 14:08:18 +00:00
|
|
|
{
|
2014-02-09 15:58:37 +00:00
|
|
|
this_thread::sleep_for(chrono::milliseconds(100));
|
2014-02-15 21:16:51 +00:00
|
|
|
pn.sync();
|
2014-01-22 15:01:39 +00:00
|
|
|
if (!(i % 10))
|
|
|
|
pn.pingAll();
|
2014-01-22 14:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|