From c7d6502b430503d44dde98659c81742e6b9b2bdb Mon Sep 17 00:00:00 2001 From: subtly Date: Tue, 16 Dec 2014 22:01:39 +0100 Subject: [PATCH] udp != tcp. history-commit. --- kademlia.cpp | 33 +++++++++++++++++++++++++++++++++ network.cpp => net.cpp | 0 2 files changed, 33 insertions(+) create mode 100644 kademlia.cpp rename network.cpp => net.cpp (100%) diff --git a/kademlia.cpp b/kademlia.cpp new file mode 100644 index 000000000..21c28cb87 --- /dev/null +++ b/kademlia.cpp @@ -0,0 +1,33 @@ +/* + 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 kademlia.cpp + * @author Alex Leverington + * @date 2014 + * Basic networking tests + */ + +#include +#include +using namespace std; +using namespace dev; +using namespace dev::p2p; + +BOOST_AUTO_TEST_CASE(host_listen_udp4) +{ + +} + diff --git a/network.cpp b/net.cpp similarity index 100% rename from network.cpp rename to net.cpp