type net.MX

8 uses

	net (current package)
		dnsclient.go#L207: type MX struct {
		dnsclient.go#L213: type byPref []*MX
		lookup.go#L541: func LookupMX(name string) ([]*MX, error) {
		lookup.go#L551: func (r *Resolver) LookupMX(ctx context.Context, name string) ([]*MX, error) {
		lookup.go#L556: 	filteredMX := make([]*MX, 0, len(records))
		lookup_unix.go#L183: func (r *Resolver) lookupMX(ctx context.Context, name string) ([]*MX, error) {
		lookup_unix.go#L188: 	var mxs []*MX
		lookup_unix.go#L219: 		mxs = append(mxs, &MX{Host: mx.MX.String(), Pref: mx.Pref})