Browse Source

Use stock tls for tunneled URL proxy HTTPS

Rod Hynes 7 năm trước cách đây
mục cha
commit
93b6114b25
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      psiphon/httpProxy.go

+ 1 - 1
psiphon/httpProxy.go

@@ -22,6 +22,7 @@ package psiphon
 import (
 import (
 	"bytes"
 	"bytes"
 	"compress/gzip"
 	"compress/gzip"
+	"crypto/tls"
 	"errors"
 	"errors"
 	"fmt"
 	"fmt"
 	"io"
 	"io"
@@ -38,7 +39,6 @@ import (
 
 
 	"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
 	"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
 	"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/parameters"
 	"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/parameters"
-	"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/tls"
 	"github.com/grafov/m3u8"
 	"github.com/grafov/m3u8"
 )
 )