how to disconnect tcp/ip connection?
61 次查看(过去 30 天)
显示 更早的评论
I made tcp/ip server and client like this
server = tcpserver('0.0.0.0',111);
and another app
cli = tcpclient('localhost',111);
It is perfectly connected.
So, how to disconnect TCP/IP form client?
and how to disconnect from server?
0 个评论
采纳的回答
Harikrishnan Balachandran Nair
2021-12-3
Hi,
Please refer to the following documentations to get a better idea on this :
Hope this helps!
5 个评论
Eric Delgado
2022-6-24
I was dealing with the same issue, using appDesigner and create a handle (property of my app) to a tcpclient object. The new solution was the "old solution" (used in "tcpip" objects).
delete(app.client)
clear app.client
The validation isa(app.client,'tcpclient') as true is not a problem at all. You can create other tcpclient object and handling this object in "app.client".
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Import and Integrate Requirements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!