Hello!
I am currently working on some open source project I forked
( https://github.com/sagneta/go-rtsengine )
but the code from github stops on this piece of code:
listener, err := net.Listen(“tcp”, “localhost:8082”)
if err != nil {
return err
}
fmt.Printf(“1”) //Prints 1
conn, err := listener.Accept()
fmt.Printf(“2”) //Never prints 2
I am new in Go, and quite confused, what should be done now. Should I change library from standard one, or maybe downgrade Go version?
My current version is go1.10.2 linux/amd64, and I am using Manjaro Linux.
I will be highly gratefull for any help!