├── .editorconfig ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .markdownlint.jsonc ├── LICENSE ├── README.md ├── assuan.go ├── go.mod ├── go.sum ├── main.go ├── named_pipe.go └── scripts ├── docker-relay ├── drtest.go ├── gpg-relay ├── mysqld-relay ├── serial-relay └── vmserial-connect /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/README.md -------------------------------------------------------------------------------- /assuan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/assuan.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/main.go -------------------------------------------------------------------------------- /named_pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/named_pipe.go -------------------------------------------------------------------------------- /scripts/docker-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/docker-relay -------------------------------------------------------------------------------- /scripts/drtest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/drtest.go -------------------------------------------------------------------------------- /scripts/gpg-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/gpg-relay -------------------------------------------------------------------------------- /scripts/mysqld-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/mysqld-relay -------------------------------------------------------------------------------- /scripts/serial-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/serial-relay -------------------------------------------------------------------------------- /scripts/vmserial-connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexicality/wsl-relay/HEAD/scripts/vmserial-connect --------------------------------------------------------------------------------