how to disconnect tcp/ip connection?

조회 수: 84 (최근 30일)
Jae-Hee Park
Jae-Hee Park 2021년 11월 24일
댓글: Eric Delgado 2022년 6월 24일
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?

채택된 답변

Harikrishnan Balachandran Nair
Harikrishnan Balachandran Nair 2021년 12월 3일
Hi,
You can close the TCP/IP connection by clearing the 'tcpclient' object using the 'clear' function .
Please refer to the following documentations to get a better idea on this :
Hope this helps!
  댓글 수: 5
Jae-Hee Park
Jae-Hee Park 2021년 12월 30일
@chuck shen Thank you.
delete(app.client);
Above command works clear the values of app.client but do not erase the app.client.
%ex)
delete(app.client);
isa(app.client,'tcpclient'); % is true
There is no way to completely erase the app.client?
Eric Delgado
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개)

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by