solidity/peer.cpp

65 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
2014-01-31 21:08:16 +00:00
the Free Software Foundation, either version 2 of the License, or
2014-01-22 14:08:18 +00:00
(at your option) any later version.
Foobar 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
/** @file peer.cpp
* @author Gav Wood <i@gavwood.com>
* @date 2014
* Peer Network test functions.
*/
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)
listenPort = atoi(argv[++i]);
else if (arg == "-r" && i + 1 < argc)
remoteHost = argv[++i];
else if (arg == "-p" && i + 1 < argc)
remotePort = atoi(argv[++i]);
else
remoteHost = argv[i];
}
2014-01-22 14:08:18 +00:00
2014-01-22 17:56:03 +00:00
BlockChain ch("/tmp");
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-01-22 14:40:45 +00:00
usleep(100000);
2014-01-22 23:18:12 +00:00
pn.process(ch);
2014-01-22 15:01:39 +00:00
if (!(i % 10))
pn.pingAll();
2014-01-22 14:08:18 +00:00
}
return 0;
}