Stops TCP/UDP services.
TCPShutdown ( )
UDPShutdown ( )
A script must call one TCPShutdown() call for every successful TCPStartup() call.
UDPShutdown() is just an alias of TCPShutdown().
TCPCloseSocket, TCPListen, TCPStartup, UDPCloseSocket
Example() Func Example() TCPStartup (); Start the TCP service. ; Register OnAutoItExit to be called when the script is closed. OnAutoItExitRegister ("OnAutoItExit") EndFunc ;==>Example Func OnAutoItExit() TCPShutdown (); Close the TCP service. EndFunc ;==>OnAutoItExit
Example() Func Example() UDPStartup (); Start the UDP service. ; Register OnAutoItExit to be called when the script is closed. OnAutoItExitRegister ("OnAutoItExit") EndFunc ;==>Example Func OnAutoItExit() UDPShutdown (); Close the UDP service. EndFunc ;==>OnAutoItExit