mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
Allow specifying TLS SNI with ?sni= in peering URI
This commit is contained in:
parent
b333c7d7f3
commit
d8df9755f2
3 changed files with 10 additions and 5 deletions
|
@ -98,6 +98,7 @@ func (l *links) call(u *url.URL, sintf string) error {
|
|||
l.tcp.call(pathtokens[0], tcpOpts, sintf)
|
||||
case "tls":
|
||||
tcpOpts.upgrade = l.tcp.tls.forDialer
|
||||
tcpOpts.tlsSNI = u.Query().Get("sni")
|
||||
l.tcp.call(u.Host, tcpOpts, sintf)
|
||||
default:
|
||||
return errors.New("unknown call scheme: " + u.Scheme)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue