I have the following code. I'm getting this error:
testdl.go:17: cannot use q (type net.IP) as type net.Addr in field value: net.IP does not implement net.Addr (missing Network method)
Any idea how to put a hardcoded IP into LocalAddr?
package main
import (
"fmt"
"net"
"net/http"
)
var url = "http://URL/api.xml"
func main() {
q := net.ParseIP("192.168.0.1")
var transport = &http.Transport{
Dial: (&net.Dialer{
LocalAddr: q,
}).Dial,
}
var httpclient = &http.Client{
Transport: transport,
}
response, err := httpclient.Get(url)
fmt.Println(response)
}
According to the documentation, indeed the IP
type does not implement Addr
. However, the type IPAddr
does:
type IPAddr struct {
IP IP
Zone string // IPv6 scoped addressing zone
}
Therefore, your code becomes:
q := net.ParseIP("192.168.0.1")
addr := &net.IPAddr{q,""}
var transport = &http.Transport{
Dial: (&net.Dialer{
LocalAddr: addr,
}).Dial,
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With