I use net.DialTimeou to connects to endpoint address on "tcp" network

    conn, err := net.DialTimeout("tcp", endpoint, connectionTimeout)
    if err != nil {
        return nil, err
    }


Is it possible to use HTTP proxy (http://111.222.333.444:3128) with net.Dial 
on TCP network? 
How can I do this?

Thank for your help.





-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to