add UDP support for reverse proxy tunnel

This commit is contained in:
ginuerzh 2023-02-02 19:20:22 +08:00
parent d810224e7b
commit 95a2f0d649
4 changed files with 8 additions and 4 deletions

View File

@ -52,6 +52,10 @@ changelog:
- '^docs:'
- '^test:'
release:
prerelease: auto
mode: keep-existing
# The lines beneath this are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json

View File

@ -1,5 +1,5 @@
package main
const (
version = "3.0.0-rc.4"
version = "3.0.0-rc.5"
)

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 (
github.com/go-gost/core v0.0.0-20230131100536-f3482d7cd848
github.com/go-gost/x v0.0.0-20230131100744-9750998940ad
github.com/go-gost/x v0.0.0-20230202111810-416405b1f083
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)

4
go.sum
View File

@ -102,8 +102,8 @@ github.com/go-gost/relay v0.3.1 h1:mkKtvMT5n3mTSHbQo//DXXLxTsIUJKRQ4Fn4atma+Ds=
github.com/go-gost/relay v0.3.1/go.mod h1:lcX+23LCQ3khIeASBo+tJ/WbwXFO32/N5YN6ucuYTG8=
github.com/go-gost/tls-dissector v0.0.2-0.20220408131628-aac992c27451 h1:xj8gUZGYO3nb5+6Bjw9+tsFkA9sYynrOvDvvC4uDV2I=
github.com/go-gost/tls-dissector v0.0.2-0.20220408131628-aac992c27451/go.mod h1:/9QfdewqmHdaE362Hv5nDaSWLx3pCmtD870d6GaquXs=
github.com/go-gost/x v0.0.0-20230131100744-9750998940ad h1:vB3zFXrW+8lB1EL6JGgKPEs+Qh7oMOLcRKtX0BPdOWg=
github.com/go-gost/x v0.0.0-20230131100744-9750998940ad/go.mod h1:8cyvvmrPIsrDvktS3jY2a7KBp0PgIg0LR+0Zi6EhL3E=
github.com/go-gost/x v0.0.0-20230202111810-416405b1f083 h1:DyTLDo2xVRWYoxkaaf2b3t7qf5jqRFAmrpgoYwaonUc=
github.com/go-gost/x v0.0.0-20230202111810-416405b1f083/go.mod h1:8cyvvmrPIsrDvktS3jY2a7KBp0PgIg0LR+0Zi6EhL3E=
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=