diff --git a/player/cmd/main.go b/player/cmd/main.go index f4ab3f3..a4cd74e 100644 --- a/player/cmd/main.go +++ b/player/cmd/main.go @@ -80,7 +80,7 @@ func main() { os.Exit(1) } - url := "http://localhost:" + *wsPort + "/" + url := "http://0.0.0.0:" + *wsPort + "/" if *tcpPort != "" && *wsPort != "" { logger.Infof("running two listeners: tcp port: %s, ws url: %s", *tcpPort, url) diff --git a/proxy/cmd/main.go b/proxy/cmd/main.go index 16548eb..29487aa 100644 --- a/proxy/cmd/main.go +++ b/proxy/cmd/main.go @@ -35,15 +35,15 @@ func main() { if *recordDir == "" { logger.Warn("FBS recording is turned off") } - + tcpUrl := "" if *tcpPort != "" { tcpUrl = ":" + string(*tcpPort) } proxy := &proxy.VncProxy{ - WsListeningUrl: "http://localhost:" + string(*wsPort) + "/", // empty = not listening on ws - RecordingDir: *recordDir, //"/Users/amitbet/vncRec", // empty = no recording + WsListeningUrl: "http://0.0.0.0:" + string(*wsPort) + "/", // empty = not listening on ws + RecordingDir: *recordDir, //"/Users/amitbet/vncRec", // empty = no recording TcpListeningUrl: tcpUrl, ProxyVncPassword: *vncPass, //empty = no auth SingleSession: &proxy.VncSession{ diff --git a/proxy/proxy_test.go b/proxy/proxy_test.go index 070e1c8..2be6def 100644 --- a/proxy/proxy_test.go +++ b/proxy/proxy_test.go @@ -6,15 +6,15 @@ func TestProxy(t *testing.T) { //create default session if required proxy := &VncProxy{ - WsListeningUrl: "http://localhost:7777/", // empty = not listening on ws - RecordingDir: "/Users/amitbet/vncRec", // empty = no recording + WsListeningUrl: "http://0.0.0.0:7778/", // empty = not listening on ws + RecordingDir: "d:\\", // empty = no recording TcpListeningUrl: ":5904", - //recordingDir: "C:\\vncRec", // empty = no recording + //RecordingDir: "C:\\vncRec", // empty = no recording ProxyVncPassword: "1234", //empty = no auth SingleSession: &VncSession{ - TargetHostname: "localhost", - TargetPort: "5903", - TargetPassword: "Ch_#!T@8", + TargetHostname: "192.168.1.101", + TargetPort: "5901", + TargetPassword: "123456", ID: "dummySession", Status: SessionStatusInit, Type: SessionTypeRecordingProxy,