close socket

Typecommand
DictionaryLCS
LibraryLiveCode Script
Syntax
close socket <socketID>
Summary

Shuts down a connection that was opened with the open socket or accept command.

Introduced1.0
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
socketID

The identifier (set when you opened the socket) of the socket you want to close. The socket identifier starts with the IP address of the host the socket is connected to, and may optionally include a port number (separated from the IP address by a colon). If there is more than one socket connected to that host and port, you can specify which socket by appending the connection name or number that was assigned when the socket was opened, separated from the port number by a vertical bar (|).

Example
close socket "127.0.0.0"
close socket "www.example.net:8080|newConnection"
close socket (line 1 of the openSockets)
RelatedCommand: accept, resetAll, open socket
Glossary: command
Message: socketTimeout
Securitynetwork
Description

Use the close socket command to release the connection when you're finished getting and sending data over it.

Tagsnetworking