Browse Source

Fixed: custom dialer requires explicit port number for fronting address

Rod Hynes 11 years ago
parent
commit
dfae022941
1 changed files with 1 additions and 1 deletions
  1. 1 1
      psiphon/meekConn.go

+ 1 - 1
psiphon/meekConn.go

@@ -101,7 +101,7 @@ func NewMeekConn(
 			&CustomTLSConfig{
 				Dial:           directDialer,
 				Timeout:        connectTimeout,
-				FrontingAddr:   serverEntry.MeekFrontingDomain,
+				FrontingAddr:   fmt.Sprintf("%s:%d", serverEntry.MeekFrontingDomain, 443),
 				SendServerName: false,
 			})
 	} else {