diff --git a/README_en.md b/README_en.md index 7a4dc94..8d911d2 100644 --- a/README_en.md +++ b/README_en.md @@ -12,6 +12,8 @@ - [x] [TCP/UDP transparent proxy](https://gost.run/en/tutorials/redirect/) - [x] DNS [resolver](https://gost.run/en/concepts/resolver/) and [proxy](https://gost.run/en/tutorials/dns/) - [x] [TUN/TAP device](https://gost.run/en/tutorials/tuntap/) +- [x] [Unix Domain Socket Redirector](https://gost.run/en/tutorials/unix/) +- [x] [Serial Port Redirector](https://gost.run/en/tutorials/serial/) - [x] [Load balancing](https://gost.run/en/concepts/selector/) - [x] [Routing control](https://gost.run/en/concepts/bypass/) - [x] [Admission control](https://gost.run/en/concepts/limiter/) diff --git a/go.mod b/go.mod index 8b16103..5adcc5a 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ replace github.com/templexxx/cpu v0.0.7 => github.com/templexxx/cpu v0.0.10-0.20 require ( github.com/go-gost/core v0.0.0-20230916134612-801f835e9ac1 - github.com/go-gost/x v0.0.0-20230916151412-f2ff1aa45a4e + github.com/go-gost/x v0.0.0-20230918014301-a623232cc1e0 github.com/judwhite/go-svc v1.2.1 gopkg.in/natefinch/lumberjack.v2 v2.0.0 ) diff --git a/go.sum b/go.sum index a496951..7313ed1 100644 --- a/go.sum +++ b/go.sum @@ -116,6 +116,8 @@ github.com/go-gost/x v0.0.0-20230916134740-92db078642da h1:BalJ9uSBejRAs5fIW8Ve9 github.com/go-gost/x v0.0.0-20230916134740-92db078642da/go.mod h1:F08/FnlpS7MxsHfSHnNpG/qtY5UA1X888HRJGCjQKZU= github.com/go-gost/x v0.0.0-20230916151412-f2ff1aa45a4e h1:PTAU2VdSHcOLJK4xxAkdspPSuO8GfUafY74qdbAx3AU= github.com/go-gost/x v0.0.0-20230916151412-f2ff1aa45a4e/go.mod h1:F08/FnlpS7MxsHfSHnNpG/qtY5UA1X888HRJGCjQKZU= +github.com/go-gost/x v0.0.0-20230918014301-a623232cc1e0 h1:SeKIz3yZtXJh2hOhTK02xiLSiCrNy/jPOGLoYzV2/IE= +github.com/go-gost/x v0.0.0-20230918014301-a623232cc1e0/go.mod h1:F08/FnlpS7MxsHfSHnNpG/qtY5UA1X888HRJGCjQKZU= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=