/ipc-lab

Lab for playing with protocols and encryption for IPC transport

Primary LanguageGoMIT LicenseMIT

ipc-lab

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

todos