Loading...
CONCEPT

TCP Servers in Go

Learn how to write TCP servers using Go's net package

avatar
rohitpaulk
Concept Author
3 min reading time

TCP is a widely used network protocol. It's the underlying protocol for HTTP, SSH and many other protocols that you're probably familiar with.

In this concept we'll learn how to write a TCP server in Go using the net package.

Not familiar with TCP? Try the "TCP: An Overview" concept first.