mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-01 03:17:37 +08:00
20 lines
312 B
C++
20 lines
312 B
C++
#include "stdafx.h"
|
|
#include "connect_client.h"
|
|
|
|
connect_client::connect_client(const char* addr,
|
|
int conn_timeout, int rw_timeout)
|
|
: addr_(addr)
|
|
, conn_timeout_(conn_timeout)
|
|
, rw_timeout_(rw_timeout)
|
|
{
|
|
}
|
|
|
|
connect_client::~connect_client()
|
|
{
|
|
}
|
|
|
|
bool connect_client::open()
|
|
{
|
|
return true;
|
|
}
|