diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-11-17 23:42:12 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-11-17 23:42:12 +0000 |
commit | 4bb7e445a67c8a5057a1cadd2d6700c2f7728d26 (patch) | |
tree | 2618271cd8357f1997bd5bc0e2d6b6ca49676fee /src/controldTcpConnection.cpp | |
parent | added OnConnect Callback (diff) |
fixed anytun-controld
Diffstat (limited to 'src/controldTcpConnection.cpp')
-rw-r--r-- | src/controldTcpConnection.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/controldTcpConnection.cpp b/src/controldTcpConnection.cpp deleted file mode 100644 index 658fff2..0000000 --- a/src/controldTcpConnection.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include "syncTcpConnection.h" -#include <boost/bind.hpp> -#include <asio.hpp> - -#include <sstream> -#include <iostream> -#include <string> - - asio::ip::tcp::socket& SyncTcpConnection::socket() - { - return socket_; - } - -void SyncTcpConnection::start() -{ - //TODO send file content here - Send("Hello"); -} -void SyncTcpConnection::Send(std::string message) -{ - asio::async_write(socket_, asio::buffer(message), - boost::bind(&SyncTcpConnection::handle_write, shared_from_this(), - asio::placeholders::error, - asio::placeholders::bytes_transferred)); -} -SyncTcpConnection::SyncTcpConnection(asio::io_service& io_service) - : socket_(io_service) -{ -} - -void SyncTcpConnection::handle_write(const asio::error_code& /*error*/, - size_t /*bytes_transferred*/) -{ -} |