Subversion Repositories HomeAutomation

Rev

Rev 1898 | Rev 1962 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1898 Rev 1916
Line 25... Line 25...
25
namespace atom {
25
namespace atom {
26
namespace net {
26
namespace net {
27
 
27
 
28
logging::Logger TcpClient::LOG("net::TcpClient");
28
logging::Logger TcpClient::LOG("net::TcpClient");
29
 
29
 
30
TcpClient::TcpClient(boost::asio::io_service& io_service, ClientId id, ServerId server_id) : socket_(io_service), Client(io_service, id, server_id)
30
TcpClient::TcpClient(boost::asio::io_service& io_service, ClientId id, ServerId server_id) : Client(io_service, id, server_id), socket_(io_service)
31
{
31
{
32
}
32
}
33
 
33
 
34
TcpClient::~TcpClient()
34
TcpClient::~TcpClient()
35
{
35
{