Stops TCP/UDP services.
TCPShutdown (  )
UDPShutdown (  )
| Success: | 1. | 
| Failure: | 0 and sets the @error flag to non-zero. | 
| @error: | Windows API WSACleanup return value (see MSDN). | 
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