Playing with protocols and encryption for IPC transports.
UDS
# socat
$ socat UNIX-LISTEN:/tmp/test.sock,fork -
$ echo hi | socat - UNIX-CONNECT:/tmp/test.sock
# or nc -U /tmp/test.sock
#
$ go run uds/server/server.go
$ go run uds/client/client.go
Playing with protocols and encryption for IPC transports.
UDS
# socat
$ socat UNIX-LISTEN:/tmp/test.sock,fork -
$ echo hi | socat - UNIX-CONNECT:/tmp/test.sock
# or nc -U /tmp/test.sock
#
$ go run uds/server/server.go
$ go run uds/client/client.go