Lines Matching refs:Dialer
12 // A Dialer contains options for connecting to an address.
15 // without that option. Dialing with the zero value of Dialer
17 type Dialer struct {
64 func (d *Dialer) deadline(now time.Time) time.Time {
100 func (d *Dialer) fallbackDelay() time.Duration {
185 var d Dialer
192 d := Dialer{Timeout: timeout}
198 Dialer
207 func (d *Dialer) Dial(network, address string) (Conn, error) {
215 Dialer: *d,
335 dialer := func(d time.Time) (Conn, error) {
338 c, err := dial(ctx.network, ra, dialer, partialDeadline)