Skip to content

Latest commit

 

History

History
6 lines (4 loc) · 295 Bytes

README.md

File metadata and controls

6 lines (4 loc) · 295 Bytes

TCP vs UDP

The main difference being TCP creates a server whereas UDP only creates a socket on which it listens for connections.
This means that the client connection would be lost, if the TCP server goes down, but not in the case of UDP.

Check out the files for connection details.