mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
feat: support Android protect path
about: 1ac9d4956b
Signed-off-by: HystericalDragon <HystericalDragons@proton.me>
This commit is contained in:
parent
f91efbeded
commit
03c8b5e6b9
6 changed files with 103 additions and 7 deletions
|
@ -30,6 +30,7 @@ import (
|
|||
"github.com/apernet/hysteria/core/client"
|
||||
"github.com/apernet/hysteria/extras/correctnet"
|
||||
"github.com/apernet/hysteria/extras/obfs"
|
||||
"github.com/apernet/hysteria/extras/protect"
|
||||
"github.com/apernet/hysteria/extras/transport/udphop"
|
||||
)
|
||||
|
||||
|
@ -55,6 +56,7 @@ func initClientFlags() {
|
|||
|
||||
type clientConfig struct {
|
||||
Server string `mapstructure:"server"`
|
||||
ProtectPath string `mapstructure:"protectPath"`
|
||||
Auth string `mapstructure:"auth"`
|
||||
Transport clientConfigTransport `mapstructure:"transport"`
|
||||
Obfs clientConfigObfs `mapstructure:"obfs"`
|
||||
|
@ -202,11 +204,11 @@ func (c *clientConfig) fillConnFactory(hyConfig *client.Config) error {
|
|||
if hyConfig.ServerAddr.Network() == "udphop" {
|
||||
hopAddr := hyConfig.ServerAddr.(*udphop.UDPHopAddr)
|
||||
newFunc = func(addr net.Addr) (net.PacketConn, error) {
|
||||
return udphop.NewUDPHopPacketConn(hopAddr, c.Transport.UDP.HopInterval, nil)
|
||||
return udphop.NewUDPHopPacketConn(hopAddr, c.Transport.UDP.HopInterval, protect.ListenUDP(c.ProtectPath))
|
||||
}
|
||||
} else {
|
||||
newFunc = func(addr net.Addr) (net.PacketConn, error) {
|
||||
return net.ListenUDP("udp", nil)
|
||||
return protect.ListenUDP(c.ProtectPath)()
|
||||
}
|
||||
}
|
||||
default:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue