diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-09-22 16:14:01 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-09-22 16:14:01 +0200 |
| commit | 7267afd28b9e00864274f55f7a82d4943bade1f8 (patch) | |
| tree | e2733fc0de53d6db85c2c1fca4bf2067add92042 /node/nextnode.cpp | |
| parent | 8065e1bf2229294fea502226962bd66d37ff81ce (diff) | |
| download | cmix-7267afd28b9e00864274f55f7a82d4943bade1f8.tar.gz cmix-7267afd28b9e00864274f55f7a82d4943bade1f8.tar.bz2 cmix-7267afd28b9e00864274f55f7a82d4943bade1f8.zip | |
Adds a NextNode class and prepares the Node to start network initialization.
Diffstat (limited to 'node/nextnode.cpp')
| -rw-r--r-- | node/nextnode.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/node/nextnode.cpp b/node/nextnode.cpp new file mode 100644 index 0000000..3045462 --- /dev/null +++ b/node/nextnode.cpp @@ -0,0 +1,7 @@ +#include "nextnode.hpp" + +using namespace boost::asio::ip; + +NextNode::NextNode(tcp::socket&& socket) +: Client(std::move(socket)) +{} |
