Skip to content

Commit 4b066a0

Browse files
authoredDec 22, 2022
Merge pull request #624 from ChIoT-Tech/master
Allow MQTT username/password in URL when connecting via Websockets
2 parents d9dea69 + 3a8066f commit 4b066a0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎netconn.go

+6-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,14 @@ import (
4040
func openConnection(uri *url.URL, tlsc *tls.Config, timeout time.Duration, headers http.Header, websocketOptions *WebsocketOptions, dialer *net.Dialer) (net.Conn, error) {
4141
switch uri.Scheme {
4242
case "ws":
43-
conn, err := NewWebsocket(uri.String(), nil, timeout, headers, websocketOptions)
43+
dialURI := uri // #623 - Gorilla Websockets does not accept URL's where uri.User != nil
44+
uri.User = nil
45+
conn, err := NewWebsocket(dialURI.String(), nil, timeout, headers, websocketOptions)
4446
return conn, err
4547
case "wss":
46-
conn, err := NewWebsocket(uri.String(), tlsc, timeout, headers, websocketOptions)
48+
dialURI := uri // #623 - Gorilla Websockets does not accept URL's where uri.User != nil
49+
uri.User = nil
50+
conn, err := NewWebsocket(dialURI.String(), tlsc, timeout, headers, websocketOptions)
4751
return conn, err
4852
case "mqtt", "tcp":
4953
allProxy := os.Getenv("all_proxy")

0 commit comments

Comments
 (0)
Please sign in to comment.