A UNIX Domain Socket Client
Let’s learn how to implement a UNIX domain socket client with Go.
We'll cover the following...
We'll cover the following...
This lesson shows a UNIX domain socket client implementation, which can be used to communicate with a domain socket server, such as the one developed in the previous lesson.
Coding example
The relevant code can be found in socketClient.go:
From lines 1–17, is the part where we get from the user the socket file that is going to be used—the ...