Press on the image to return to the main documentation page.
Network
The network library includes two objects for working with TCP: Socket, ServerSocket With Socket you can communicate with other devices and computers over TCP/IP. ServerSocket allows you to listen for incoming connections. Once a connection is established you will receive a Socket object that will be used for handling this specific connection. See the Network tutorial. It also includes two objects for working with UDP: UDPSocket and UDPPacket. See UDPSocket for more information.
The ServerSocket object allows other machines to connect to this machine. The ServerSocket listens to a specific port. Once a connection arrives, the NewConnection event is raised with a Socket object. This Socket object should be used to communicate with this client. You may call Listen again and receive more connections. A single ServerSocket can handle many connections. For each connection there should be one Socket object.
The Socket object is an endpoint for network communication. If you are connecting to a server then you should initialize a Socket object and call Connect with the server address. The Connected event will be raised when the connection is ready or if the connection has failed. Sockets are also used by the server. Once a new incoming connection is established, the NewConnection event will be raised and an initialized Socket object will be passed as a parameter. Once a socket is connected you should use its InputStream and OutputStream to communicate with the other machine.
A packet of data that is being sent or received. To send a packet call one of the Initialize methods and then send the packet by passing it to UDPSocket.Send. When a packet arrives you can get the data in the packet from the available properties.
UDPSocket supports sending and receiving UDPPackets. Sending packets is done by calling the Send method. When a packet arrives the PacketArrived event is raised with the packet. This example sends a string message to some other machine. When a packet arrives it converts it to string and shows it: Subprocess_globals DimUDPSocket1AsUDPSocket EndSub