Hi,
I was trying to connect with DialTimeout as:
conn, err := net.DialTimeout("tcp", address, time.Duration(30)*time.Second)
if err != nil {
fmt.Println("error in conn : ",err)
return nil, err
}
My program Stuck in Net.DialTimeout
I am not getting what could be the problem?
Am I missing out on something?
Please guide.
Thanks & Regards