mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
Merge pull request #29 from tobyxdd/wip-socks5-auth
SOCKS5 username & password auth option
This commit is contained in:
commit
b94cf9035d
2 changed files with 9 additions and 1 deletions
|
@ -96,7 +96,13 @@ func proxyClient(args []string) {
|
|||
|
||||
if len(config.SOCKS5Addr) > 0 {
|
||||
go func() {
|
||||
socks5server, err := socks5.NewServer(client, config.SOCKS5Addr, nil, config.SOCKS5Timeout, aclEngine,
|
||||
var authFunc func(user, password string) bool
|
||||
if config.SOCKS5User != "" && config.SOCKS5Password != "" {
|
||||
authFunc = func(user, password string) bool {
|
||||
return config.SOCKS5User == user && config.SOCKS5Password == password
|
||||
}
|
||||
}
|
||||
socks5server, err := socks5.NewServer(client, config.SOCKS5Addr, authFunc, config.SOCKS5Timeout, aclEngine,
|
||||
config.SOCKS5DisableUDP,
|
||||
func(addr net.Addr, reqAddr string, action acl.Action, arg string) {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
|
|
|
@ -11,6 +11,8 @@ type proxyClientConfig struct {
|
|||
SOCKS5Addr string `json:"socks5_addr" desc:"SOCKS5 listen address"`
|
||||
SOCKS5Timeout int `json:"socks5_timeout" desc:"SOCKS5 connection timeout in seconds"`
|
||||
SOCKS5DisableUDP bool `json:"socks5_disable_udp" desc:"Disable SOCKS5 UDP support"`
|
||||
SOCKS5User string `json:"socks5_user" desc:"SOCKS5 auth username"`
|
||||
SOCKS5Password string `json:"socks5_password" desc:"SOCKS5 auth password"`
|
||||
HTTPAddr string `json:"http_addr" desc:"HTTP listen address"`
|
||||
HTTPTimeout int `json:"http_timeout" desc:"HTTP connection timeout in seconds"`
|
||||
HTTPUser string `json:"http_user" desc:"HTTP basic auth username"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue