TCP connection between client and server programs using glibc's socket implementation
Build using:
$ make
Start server with:
$ ./build/server
And client with:
$ ./build/client 127.0.0.1
Start server with:
$ ./build/server_select
And client with:
$ nc 127.0.0.1 5555 # TODO: to replace with client executable
Then type the text to be sent.
Debugging can be done using VSCode launch configurations.