Fix PVD connection

This commit is contained in:
bloeys
2022-01-17 14:41:47 +04:00
parent eb8eea6c44
commit 6fe8f6eba1
2 changed files with 3 additions and 7 deletions

View File

@ -6,10 +6,9 @@ import (
func main() {
f := pgo.CreateFoundation()
defer f.Release()
println("foundation:", f)
pvdTr := pgo.DefaultPvdSocketTransportCreate("0.0.0.0", 5426, 100000)
pvdTr := pgo.DefaultPvdSocketTransportCreate("127.0.0.1", 5425, 100000)
println("Pvd transport:", pvdTr)
pvd := pgo.CreatePvd(f)