Clash.Meta/dns/client.go

27 lines
555 B
Go
Raw Normal View History

2018-12-05 21:13:29 +08:00
package dns
import (
"context"
2020-02-09 17:02:48 +08:00
"github.com/Dreamacro/clash/component/dialer"
2018-12-05 21:13:29 +08:00
D "github.com/miekg/dns"
)
2019-06-28 12:29:08 +08:00
type client struct {
*D.Client
2018-12-05 21:13:29 +08:00
Address string
}
2019-06-28 12:29:08 +08:00
func (c *client) Exchange(m *D.Msg) (msg *D.Msg, err error) {
return c.ExchangeContext(context.Background(), m)
2018-12-05 21:13:29 +08:00
}
2019-06-28 12:29:08 +08:00
func (c *client) ExchangeContext(ctx context.Context, m *D.Msg) (msg *D.Msg, err error) {
2020-02-09 17:02:48 +08:00
c.Client.Dialer = dialer.Dialer()
// Please note that miekg/dns ExchangeContext doesn't respond to context cancel.
2019-06-28 12:29:08 +08:00
msg, _, err = c.Client.ExchangeContext(ctx, m, c.Address)
return
2018-12-05 21:13:29 +08:00
}