You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.5 KiB
113 lines
3.5 KiB
11 years ago
|
/*
|
||
|
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
|
||
11 years ago
|
the Free Software Foundation, either version 3 of the License, or
|
||
11 years ago
|
(at your option) any later version.
|
||
|
|
||
11 years ago
|
cpp-ethereum is distributed in the hope that it will be useful,
|
||
11 years ago
|
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
|
||
11 years ago
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||
11 years ago
|
*/
|
||
|
/** @file PeerNetwork.h
|
||
|
* @author Gav Wood <i@gavwood.com>
|
||
|
* @date 2014
|
||
11 years ago
|
*
|
||
|
* Miscellanea required for the PeerServer/PeerSession classes.
|
||
11 years ago
|
*/
|
||
|
|
||
11 years ago
|
#pragma once
|
||
|
|
||
11 years ago
|
#include <string>
|
||
11 years ago
|
#include <boost/asio.hpp>
|
||
|
#include <boost/asio/ip/tcp.hpp>
|
||
11 years ago
|
#include <chrono>
|
||
11 years ago
|
#include <libethential/Common.h>
|
||
|
#include <libethential/Log.h>
|
||
11 years ago
|
namespace ba = boost::asio;
|
||
|
namespace bi = boost::asio::ip;
|
||
11 years ago
|
|
||
|
namespace eth
|
||
|
{
|
||
|
|
||
11 years ago
|
bool isPrivateAddress(bi::address _addressToCheck);
|
||
|
|
||
11 years ago
|
static const eth::uint c_maxHashes = 32; ///< Maximum number of hashes BlockHashes will ever send.
|
||
|
static const eth::uint c_maxHashesAsk = 32; ///< Maximum number of hashes GetBlockHashes will ever ask for.
|
||
|
static const eth::uint c_maxBlocks = 16; ///< Maximum number of blocks Blocks will ever send.
|
||
|
static const eth::uint c_maxBlocksAsk = 16; ///< Maximum number of blocks we ask to receive in Blocks (when using GetChain).
|
||
|
|
||
11 years ago
|
class OverlayDB;
|
||
11 years ago
|
class BlockChain;
|
||
|
class TransactionQueue;
|
||
10 years ago
|
class EthereumHost;
|
||
|
class EthereumSession;
|
||
11 years ago
|
|
||
11 years ago
|
struct NetWarn: public LogChannel { static const char* name() { return "!N!"; } static const int verbosity = 0; };
|
||
|
struct NetNote: public LogChannel { static const char* name() { return "*N*"; } static const int verbosity = 1; };
|
||
|
struct NetMessageSummary: public LogChannel { static const char* name() { return "-N-"; } static const int verbosity = 2; };
|
||
11 years ago
|
struct NetConnect: public LogChannel { static const char* name() { return "+N+"; } static const int verbosity = 4; };
|
||
|
struct NetMessageDetail: public LogChannel { static const char* name() { return "=N="; } static const int verbosity = 5; };
|
||
|
struct NetTriviaSummary: public LogChannel { static const char* name() { return "-N-"; } static const int verbosity = 10; };
|
||
|
struct NetTriviaDetail: public LogChannel { static const char* name() { return "=N="; } static const int verbosity = 11; };
|
||
11 years ago
|
struct NetAllDetail: public LogChannel { static const char* name() { return "=N="; } static const int verbosity = 13; };
|
||
|
struct NetRight: public LogChannel { static const char* name() { return ">N>"; } static const int verbosity = 14; };
|
||
|
struct NetLeft: public LogChannel { static const char* name() { return "<N<"; } static const int verbosity = 15; };
|
||
11 years ago
|
|
||
11 years ago
|
enum PacketType
|
||
|
{
|
||
11 years ago
|
HelloPacket = 0,
|
||
|
DisconnectPacket,
|
||
|
PingPacket,
|
||
|
PongPacket,
|
||
|
GetPeersPacket = 0x10,
|
||
|
PeersPacket,
|
||
|
TransactionsPacket,
|
||
|
BlocksPacket,
|
||
|
GetChainPacket,
|
||
|
NotInChainPacket,
|
||
11 years ago
|
GetTransactionsPacket,
|
||
|
GetBlockHashesPacket,
|
||
|
BlockHashesPacket,
|
||
|
GetBlocksPacket,
|
||
11 years ago
|
};
|
||
|
|
||
11 years ago
|
enum DisconnectReason
|
||
|
{
|
||
|
DisconnectRequested = 0,
|
||
|
TCPError,
|
||
|
BadProtocol,
|
||
|
UselessPeer,
|
||
|
TooManyPeers,
|
||
|
DuplicatePeer,
|
||
|
WrongGenesis,
|
||
|
IncompatibleProtocol,
|
||
|
ClientQuit
|
||
|
};
|
||
|
|
||
11 years ago
|
/// @returns the string form of the given disconnection reason.
|
||
|
std::string reasonOf(DisconnectReason _r);
|
||
11 years ago
|
|
||
11 years ago
|
struct PeerInfo
|
||
|
{
|
||
|
std::string clientVersion;
|
||
|
std::string host;
|
||
11 years ago
|
unsigned short port;
|
||
11 years ago
|
std::chrono::steady_clock::duration lastPing;
|
||
|
};
|
||
|
|
||
11 years ago
|
class UPnP;
|
||
11 years ago
|
|
||
11 years ago
|
enum class NodeMode
|
||
|
{
|
||
|
Full,
|
||
|
PeerServer
|
||
|
};
|
||
|
|
||
11 years ago
|
}
|