diff --git a/libp2p/Host.h b/libp2p/Host.h index 0e86710ec..d04470efd 100644 --- a/libp2p/Host.h +++ b/libp2p/Host.h @@ -125,6 +125,7 @@ class HostNodeTableHandler: public NodeTableEventHandler * @todo gracefully disconnect peer if peer already connected * @todo determinePublic: ipv6, udp * @todo handle conflict if addNode/requireNode called and Node already exists w/conflicting tcp or udp port + * @todo writing host identifier */ class Host: public Worker { diff --git a/libwebthree/WebThree.h b/libwebthree/WebThree.h index c5655b581..f2130d3f4 100644 --- a/libwebthree/WebThree.h +++ b/libwebthree/WebThree.h @@ -54,7 +54,7 @@ class WebThreeNetworkFace { public: /// Get information on the current peer set. - virtual std::vector peers() = 0; + virtual std::vector peers() = 0; /// Same as peers().size(), but more efficient. virtual size_t peerCount() const = 0;