mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
Merge pull request #742 from apernet/http-outbound
feat: HTTP/HTTPS proxy outbound
This commit is contained in:
commit
6b5c791416
4 changed files with 218 additions and 0 deletions
|
@ -161,11 +161,17 @@ type serverConfigOutboundSOCKS5 struct {
|
|||
Password string `mapstructure:"password"`
|
||||
}
|
||||
|
||||
type serverConfigOutboundHTTP struct {
|
||||
URL string `mapstructure:"url"`
|
||||
Insecure bool `mapstructure:"insecure"`
|
||||
}
|
||||
|
||||
type serverConfigOutboundEntry struct {
|
||||
Name string `mapstructure:"name"`
|
||||
Type string `mapstructure:"type"`
|
||||
Direct serverConfigOutboundDirect `mapstructure:"direct"`
|
||||
SOCKS5 serverConfigOutboundSOCKS5 `mapstructure:"socks5"`
|
||||
HTTP serverConfigOutboundHTTP `mapstructure:"http"`
|
||||
}
|
||||
|
||||
type serverConfigTrafficStats struct {
|
||||
|
@ -402,6 +408,13 @@ func serverConfigOutboundSOCKS5ToOutbound(c serverConfigOutboundSOCKS5) (outboun
|
|||
return outbounds.NewSOCKS5Outbound(c.Addr, c.Username, c.Password), nil
|
||||
}
|
||||
|
||||
func serverConfigOutboundHTTPToOutbound(c serverConfigOutboundHTTP) (outbounds.PluggableOutbound, error) {
|
||||
if c.URL == "" {
|
||||
return nil, configError{Field: "outbounds.http.url", Err: errors.New("empty http address")}
|
||||
}
|
||||
return outbounds.NewHTTPOutbound(c.URL, c.Insecure)
|
||||
}
|
||||
|
||||
func (c *serverConfig) fillOutboundConfig(hyConfig *server.Config) error {
|
||||
// Resolver, ACL, actual outbound are all implemented through the Outbound interface.
|
||||
// Depending on the config, we build a chain like this:
|
||||
|
@ -428,6 +441,8 @@ func (c *serverConfig) fillOutboundConfig(hyConfig *server.Config) error {
|
|||
ob, err = serverConfigOutboundDirectToOutbound(entry.Direct)
|
||||
case "socks5":
|
||||
ob, err = serverConfigOutboundSOCKS5ToOutbound(entry.SOCKS5)
|
||||
case "http":
|
||||
ob, err = serverConfigOutboundHTTPToOutbound(entry.HTTP)
|
||||
default:
|
||||
err = configError{Field: "outbounds.type", Err: errors.New("unsupported outbound type")}
|
||||
}
|
||||
|
|
|
@ -123,6 +123,14 @@ func TestServerConfig(t *testing.T) {
|
|||
Password: "Elliot Alderson",
|
||||
},
|
||||
},
|
||||
{
|
||||
Name: "weirdstuff",
|
||||
Type: "http",
|
||||
HTTP: serverConfigOutboundHTTP{
|
||||
URL: "https://eyy.lmao:4443/goofy",
|
||||
Insecure: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
TrafficStats: serverConfigTrafficStats{
|
||||
Listen: ":9999",
|
||||
|
|
|
@ -91,6 +91,11 @@ outbounds:
|
|||
addr: shady.proxy.ru:1080
|
||||
username: hackerman
|
||||
password: Elliot Alderson
|
||||
- name: weirdstuff
|
||||
type: http
|
||||
http:
|
||||
url: https://eyy.lmao:4443/goofy
|
||||
insecure: true
|
||||
|
||||
trafficStats:
|
||||
listen: :9999
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue