blob: 658fff22ec49b2b3137309c61a72cbd357ee58d4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#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*/)
{
}
|