|
|
|
|
|
SocketClose (Function) In french: SocketFerme Closes a socket or a connection to a server socket. Warning The connection must be closed for the server socket to become aware of a message in blocking read mode. Reminder A socket is a communication resource used by applications to communicate from one machine to another, regardless of the type of network.
IF SocketCreate("Serveur", 8000) = False THEN
Error("Erreur création " + ErrorInfo(errMessage))
ELSE
...
SocketClose("Serveur")
END
Syntax
SocketClose(<Socket name>)
<Socket name>: Character string Name of the socket that received the message. In the WINDEV applications, this name was defined on the server:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|