solidity/peer.cpp

64 lines
1.5 KiB
C++
Raw Normal View History

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
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.
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-09-03 19:06:36 +00:00
#include <libp2p/Host.h>
2014-01-22 14:08:18 +00:00
using namespace std;
using namespace dev;
using namespace dev::p2p;
2014-01-22 14:08:18 +00:00
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)
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)
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-09-11 11:27:15 +00:00
Host ph("Test", NetworkPreferences(listenPort));
2014-01-22 14:08:18 +00:00
2014-01-22 14:40:45 +00:00
if (!remoteHost.empty())
2014-09-01 16:54:06 +00:00
ph.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-01-22 15:01:39 +00:00
if (!(i % 10))
2014-09-01 16:54:06 +00:00
ph.pingAll();
2014-01-22 14:08:18 +00:00
}
return 0;
}