mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
11 lines
235 B
Go
11 lines
235 B
Go
package udp
|
|
|
|
import "github.com/sagernet/sing/common/redir"
|
|
|
|
type Option func(*Listener)
|
|
|
|
func WithTransproxyMode(mode redir.TransproxyMode) Option {
|
|
return func(listener *Listener) {
|
|
listener.tproxy = mode == redir.ModeTProxy
|
|
}
|
|
}
|