/* 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 Common.h * @author Gav Wood * @date 2014 * * Miscellanea required for the Host/Session classes. */ #pragma once #include #include #include #include #include #include #include #include #include namespace ba = boost::asio; namespace bi = boost::asio::ip; namespace dev { class RLP; class RLPStream; namespace p2p { using NodeId = h512; bool isPrivateAddress(bi::address const& _addressToCheck); bool isLocalHostAddress(bi::address const& _addressToCheck); class UPnP; class Capability; class Host; class Session; 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; }; struct NetConnect: public LogChannel { static const char* name() { return "+N+"; } static const int verbosity = 10; }; 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; }; 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 " CapDesc; typedef std::set CapDescSet; typedef std::vector CapDescs; struct PeerInfo { NodeId id; std::string clientVersion; std::string host; unsigned short port; std::chrono::steady_clock::duration lastPing; std::set caps; unsigned socket; std::map notes; }; using PeerInfos = std::vector; } }