├── .gitattributes ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── client_all.go ├── connect_other.go ├── connect_windows.go ├── encryption.go ├── example ├── .DS_Store └── example.go ├── go.mod ├── go.sum ├── handshake.go ├── headers.go ├── ipc_test.go ├── server_all.go ├── shared.go ├── types.go └── vars.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/README.md -------------------------------------------------------------------------------- /client_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/client_all.go -------------------------------------------------------------------------------- /connect_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/connect_other.go -------------------------------------------------------------------------------- /connect_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/connect_windows.go -------------------------------------------------------------------------------- /encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/encryption.go -------------------------------------------------------------------------------- /example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/example/.DS_Store -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/example/example.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/go.sum -------------------------------------------------------------------------------- /handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/handshake.go -------------------------------------------------------------------------------- /headers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/headers.go -------------------------------------------------------------------------------- /ipc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/ipc_test.go -------------------------------------------------------------------------------- /server_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/server_all.go -------------------------------------------------------------------------------- /shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/shared.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/types.go -------------------------------------------------------------------------------- /vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/james-barrow/golang-ipc/HEAD/vars.go --------------------------------------------------------------------------------