diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-01 12:08:22 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-01 12:08:22 +0200 |
| commit | 43c7aff79e4ea4a88313fcc81f3281b304d95f0d (patch) | |
| tree | d266ada73e9ebb025dcf46eb0eb21cfa604e80b6 /node/nextnode.cpp | |
| parent | 2969016625c22d9b1e73534f82aed5a4f26b602f (diff) | |
| download | cmix-43c7aff79e4ea4a88313fcc81f3281b304d95f0d.tar.gz cmix-43c7aff79e4ea4a88313fcc81f3281b304d95f0d.tar.bz2 cmix-43c7aff79e4ea4a88313fcc81f3281b304d95f0d.zip | |
All CMix communication is now wrapped in a CMixMessage.
Diffstat (limited to 'node/nextnode.cpp')
| -rw-r--r-- | node/nextnode.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/node/nextnode.cpp b/node/nextnode.cpp index f6c4454..8c5b7eb 100644 --- a/node/nextnode.cpp +++ b/node/nextnode.cpp @@ -8,11 +8,6 @@ NextNode::NextNode(tcp::socket&& socket) : client(std::move(socket)) {} -void NextNode::send(std::string message) -{ - client.send(message); -} - void NextNode::async_connect(std::string next_host, std::string next_port, std::function<void ()> on_connect) { client.async_connect(next_host, next_port, on_connect); |
