fixed conn clear bug

This commit is contained in:
wangyu-
2017-10-11 11:33:56 -05:00
parent 321afdb627
commit 4ab16d096a
5 changed files with 17 additions and 6 deletions

View File

@@ -76,9 +76,14 @@ struct conn_info_t //stores info for a raw connection.for client ,there is o
fec_decode_manager_t fec_decode_manager;
my_timer_t timer;
ip_port_t ip_port;
u64_t last_active_time;
conn_info_t()
{
}
void update_active_time()
{
last_active_time=get_current_time();
}
conn_info_t(const conn_info_t &b)
{
assert(0==1);