mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-06 13:37:36 +03:00
This fixes change https://go-review.googlesource.com/#/c/23069/, which assumes all DNS requests are UDP. This is not true -- DNS requests can be TCP in some cases. See: https://tip.golang.org/src/net/dnsclient_unix.go#L154 https://en.wikipedia.org/wiki/Domain_Name_System#Protocol_transport Also, the test code added by the above change doesn't actually test anything because the test uses a faked DNS resolver that doesn't actually make any DNS queries. I fixed that by adding another test that uses the system DNS resolver. Updates #12580 Change-Id: I6c24c03ebab84d437d3ac610fd6eb5353753c490 Reviewed-on: https://go-review.googlesource.com/23101 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
45 lines
1.8 KiB
Go
45 lines
1.8 KiB
Go
// Copyright 2016 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package nettrace contains internal hooks for tracing activity in
|
|
// the net package. This package is purely internal for use by the
|
|
// net/http/httptrace package and has no stable API exposed to end
|
|
// users.
|
|
package nettrace
|
|
|
|
// TraceKey is a context.Context Value key. Its associated value should
|
|
// be a *Trace struct.
|
|
type TraceKey struct{}
|
|
|
|
// LookupIPAltResolverKey is a context.Context Value key used by tests to
|
|
// specify an alternate resolver func.
|
|
// It is not exposed to outsider users. (But see issue 12503)
|
|
// The value should be the same type as lookupIP:
|
|
// func lookupIP(ctx context.Context, host string) ([]IPAddr, error)
|
|
type LookupIPAltResolverKey struct{}
|
|
|
|
// Trace contains a set of hooks for tracing events within
|
|
// the net package. Any specific hook may be nil.
|
|
type Trace struct {
|
|
// DNSStart is called with the hostname of a DNS lookup
|
|
// before it begins.
|
|
DNSStart func(name string)
|
|
|
|
// DNSDone is called after a DNS lookup completes (or fails).
|
|
// The coalesced parameter is whether singleflight de-dupped
|
|
// the call. The addrs are of type net.IPAddr but can't
|
|
// actually be for circular dependency reasons.
|
|
DNSDone func(netIPs []interface{}, coalesced bool, err error)
|
|
|
|
// ConnectStart is called before a Dial, excluding Dials made
|
|
// during DNS lookups. In the case of DualStack (Happy Eyeballs)
|
|
// dialing, this may be called multiple times, from multiple
|
|
// goroutines.
|
|
ConnectStart func(network, addr string)
|
|
|
|
// ConnectStart is called after a Dial with the results, excluding
|
|
// Dials made during DNS lookups. It may also be called multiple
|
|
// times, like ConnectStart.
|
|
ConnectDone func(network, addr string, err error)
|
|
}
|