Fix ngrok

This commit is contained in:
Alex X
2023-11-02 14:57:52 +03:00
parent e6fb4081f7
commit 535bacf9d6
+4 -3
View File
@@ -2,12 +2,13 @@ package ngrok
import ( import (
"fmt" "fmt"
"net"
"strings"
"github.com/AlexxIT/go2rtc/internal/app" "github.com/AlexxIT/go2rtc/internal/app"
"github.com/AlexxIT/go2rtc/internal/webrtc" "github.com/AlexxIT/go2rtc/internal/webrtc"
"github.com/AlexxIT/go2rtc/pkg/ngrok" "github.com/AlexxIT/go2rtc/pkg/ngrok"
"github.com/rs/zerolog" "github.com/rs/zerolog"
"net"
"strings"
) )
func Init() { func Init() {
@@ -39,7 +40,7 @@ func Init() {
} }
// Addr: "//localhost:8555", URL: "tcp://1.tcp.eu.ngrok.io:12345" // Addr: "//localhost:8555", URL: "tcp://1.tcp.eu.ngrok.io:12345"
if msg.Addr == "//localhost:"+webrtc.Port && strings.HasPrefix(msg.URL, "tcp://") { if strings.HasPrefix(msg.Addr, "//localhost:") && strings.HasPrefix(msg.URL, "tcp://") {
// don't know if really necessary use IP // don't know if really necessary use IP
address, err := ConvertHostToIP(msg.URL[6:]) address, err := ConvertHostToIP(msg.URL[6:])
if err != nil { if err != nil {