News

Socket Tutorial This repository contains a collection of tutorials for UDP and TCP sockets in Python. The tutorials are designed to be easy to follow and include code snippets to help you get started.
TCP vs UDP In this tutorial we are going to consider only TCP. There is a great article about socket programming using UDP by Glenn Fiedler [2].
In this tutorial we will discuss the concept of Ports and how they work with IP addresses. If you have not read our article on IP addresses and need a brush up, you can find the article here. If ...
Create an asynchronous TCP client socket in C# At the client side, you will need to run a client socket that connects to the server socket and sends and receives data to and from the server.
RPI Sockets Tutorial A very good introductory tutorial on socket programming for beginners. Presents example TCP client and TCP server code and provides detailed line-by-line explanations.
If you call Socket.setSoLinger (true, 10000), then call close (), the documentation states that this causes close () to block until all of the data has been sent to the TCP destination.