Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 538 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 538 Bytes

Go Documentation CircleCI

Example

conn, err := tunnel.DialViaProxy(proxyUrl, "farend:5000")
if err != nil {
    log.Fatal(err)
}
defer conn.Close()

if conn != nil {
    fmt.Println("Connection ready to use")
}
// ...proceed with net.Conn operations