mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 21:17:47 +03:00
Merge pull request #79 from HyNetwork/wip-servername
Add TLS server name option for client
This commit is contained in:
commit
34b453b997
4 changed files with 4 additions and 0 deletions
|
@ -267,6 +267,7 @@ hysteria_traffic_uplink_bytes_total{auth="aGFja2VyISE="} 37452
|
||||||
"obfs": "AMOGUS", // Obfuscation password
|
"obfs": "AMOGUS", // Obfuscation password
|
||||||
"auth": "[BASE64]", // Authentication payload in Base64
|
"auth": "[BASE64]", // Authentication payload in Base64
|
||||||
"auth_str": "yubiyubi", // Authentication payload in string, mutually exclusive with the option above
|
"auth_str": "yubiyubi", // Authentication payload in string, mutually exclusive with the option above
|
||||||
|
"server_name": "real.name.com", // TLS hostname used to verify the server certificate
|
||||||
"insecure": false, // Ignore all certificate errors
|
"insecure": false, // Ignore all certificate errors
|
||||||
"ca": "my.ca", // Custom CA file
|
"ca": "my.ca", // Custom CA file
|
||||||
"recv_window_conn": 15728640, // QUIC stream receive window
|
"recv_window_conn": 15728640, // QUIC stream receive window
|
||||||
|
|
|
@ -254,6 +254,7 @@ hysteria_traffic_uplink_bytes_total{auth="aGFja2VyISE="} 37452
|
||||||
"obfs": "AMOGUS", // 混淆密码
|
"obfs": "AMOGUS", // 混淆密码
|
||||||
"auth": "[BASE64]", // Base64 验证密钥
|
"auth": "[BASE64]", // Base64 验证密钥
|
||||||
"auth_str": "yubiyubi", // 字符串验证密钥,和上面的选项二选一
|
"auth_str": "yubiyubi", // 字符串验证密钥,和上面的选项二选一
|
||||||
|
"server_name": "real.name.com", // 用于验证服务端证书的 hostname
|
||||||
"insecure": false, // 忽略一切证书错误
|
"insecure": false, // 忽略一切证书错误
|
||||||
"ca": "my.ca", // 自定义 CA
|
"ca": "my.ca", // 自定义 CA
|
||||||
"recv_window_conn": 15728640, // QUIC stream receive window
|
"recv_window_conn": 15728640, // QUIC stream receive window
|
||||||
|
|
|
@ -26,6 +26,7 @@ func client(config *clientConfig) {
|
||||||
logrus.WithField("config", config.String()).Info("Client configuration loaded")
|
logrus.WithField("config", config.String()).Info("Client configuration loaded")
|
||||||
// TLS
|
// TLS
|
||||||
tlsConfig := &tls.Config{
|
tlsConfig := &tls.Config{
|
||||||
|
ServerName: config.ServerName,
|
||||||
InsecureSkipVerify: config.Insecure,
|
InsecureSkipVerify: config.Insecure,
|
||||||
NextProtos: []string{tlsProtocolName},
|
NextProtos: []string{tlsProtocolName},
|
||||||
MinVersion: tls.VersionTLS13,
|
MinVersion: tls.VersionTLS13,
|
||||||
|
|
|
@ -110,6 +110,7 @@ type clientConfig struct {
|
||||||
Obfs string `json:"obfs"`
|
Obfs string `json:"obfs"`
|
||||||
Auth []byte `json:"auth"`
|
Auth []byte `json:"auth"`
|
||||||
AuthString string `json:"auth_str"`
|
AuthString string `json:"auth_str"`
|
||||||
|
ServerName string `json:"server_name"`
|
||||||
Insecure bool `json:"insecure"`
|
Insecure bool `json:"insecure"`
|
||||||
CustomCA string `json:"ca"`
|
CustomCA string `json:"ca"`
|
||||||
ReceiveWindowConn uint64 `json:"recv_window_conn"`
|
ReceiveWindowConn uint64 `json:"recv_window_conn"`
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue