File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ func NewPerHost(defaultDialer, bypass Dialer) *PerHost {
30
30
}
31
31
}
32
32
33
- // Dial connects to the address addr on the network net through either
33
+ // Dial connects to the address addr on the given network through either
34
34
// defaultDialer or bypass.
35
35
func (p * PerHost ) Dial (network , addr string ) (c net.Conn , err error ) {
36
36
host , _ , err := net .SplitHostPort (addr )
@@ -112,9 +112,9 @@ func (p *PerHost) AddIP(ip net.IP) {
112
112
p .bypassIPs = append (p .bypassIPs , ip )
113
113
}
114
114
115
- // AddIP specifies an IP range that will use the bypass proxy. Note that this
116
- // will only take effect if a literal IP address is dialed. A connection to a
117
- // named host will never match.
115
+ // AddNetwork specifies an IP range that will use the bypass proxy. Note that
116
+ // this will only take effect if a literal IP address is dialed. A connection
117
+ // to a named host will never match.
118
118
func (p * PerHost ) AddNetwork (net * net.IPNet ) {
119
119
p .bypassNetworks = append (p .bypassNetworks , net )
120
120
}
You can’t perform that action at this time.
0 commit comments