implement client TLS support

This commit is contained in:
aler9
2020-12-14 22:49:47 +01:00
parent 9cd36cdd68
commit 61318d7f96
10 changed files with 141 additions and 34 deletions

View File

@@ -318,7 +318,7 @@ func (c *ClientConn) Describe(u *base.URL) (Tracks, *base.Response, error) {
return nil, nil, err
}
nc, err := c.conf.Dial(u.Host)
nc, err := c.conf.Dial(u.Scheme, u.Host)
if err != nil {
return nil, nil, err
}