先关闭令牌控制器,避免重连网络期间别的任务发送数据
This commit is contained in:
parent
8de821d190
commit
d2d528000a
|
@ -593,10 +593,11 @@ bool TokenClient::ChangeIPEndPoint(const NetUri& uri)
|
||||||
|
|
||||||
// 为了能够处理Tcp/Udp切换,重新建立连接
|
// 为了能够处理Tcp/Udp切换,重新建立连接
|
||||||
|
|
||||||
|
ctrl->Close();
|
||||||
delete socket;
|
delete socket;
|
||||||
|
|
||||||
socket = Socket::CreateRemote(uri);
|
socket = Socket::CreateRemote(uri);
|
||||||
ctrl->_Socket = socket;
|
ctrl->_Socket = socket;
|
||||||
ctrl->Close();
|
|
||||||
ctrl->Open();
|
ctrl->Open();
|
||||||
|
|
||||||
/*ctrl->Port->Close();
|
/*ctrl->Port->Close();
|
||||||
|
|
Loading…
Reference in New Issue