add recorder for serial handler

This commit is contained in:
ginuerzh 2023-09-18 09:43:44 +08:00
parent 420b36b2f8
commit 05d06a2718
3 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,8 @@
- [x] [TCP/UDP transparent proxy](https://gost.run/en/tutorials/redirect/) - [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] 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] [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] [Load balancing](https://gost.run/en/concepts/selector/)
- [x] [Routing control](https://gost.run/en/concepts/bypass/) - [x] [Routing control](https://gost.run/en/concepts/bypass/)
- [x] [Admission control](https://gost.run/en/concepts/limiter/) - [x] [Admission control](https://gost.run/en/concepts/limiter/)

2
go.mod
View File

@ -6,7 +6,7 @@ replace github.com/templexxx/cpu v0.0.7 => github.com/templexxx/cpu v0.0.10-0.20
require ( require (
github.com/go-gost/core v0.0.0-20230916134612-801f835e9ac1 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 github.com/judwhite/go-svc v1.2.1
gopkg.in/natefinch/lumberjack.v2 v2.0.0 gopkg.in/natefinch/lumberjack.v2 v2.0.0
) )

2
go.sum
View File

@ -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-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 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-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.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as=
github.com/go-kit/kit v0.9.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= github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=