mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-12 20:31:17 +08:00
48 lines
718 B
Go
48 lines
718 B
Go
package context
|
|
|
|
import (
|
|
"context"
|
|
"github.com/metacubex/mihomo/common/utils"
|
|
|
|
"github.com/gofrs/uuid/v5"
|
|
"github.com/miekg/dns"
|
|
)
|
|
|
|
const (
|
|
DNSTypeHost = "host"
|
|
DNSTypeFakeIP = "fakeip"
|
|
DNSTypeRaw = "raw"
|
|
)
|
|
|
|
type DNSContext struct {
|
|
context.Context
|
|
|
|
id uuid.UUID
|
|
msg *dns.Msg
|
|
tp string
|
|
}
|
|
|
|
func NewDNSContext(ctx context.Context, msg *dns.Msg) *DNSContext {
|
|
return &DNSContext{
|
|
Context: ctx,
|
|
|
|
id: utils.NewUUIDV4(),
|
|
msg: msg,
|
|
}
|
|
}
|
|
|
|
// ID implement C.PlainContext ID
|
|
func (c *DNSContext) ID() uuid.UUID {
|
|
return c.id
|
|
}
|
|
|
|
// SetType set type of response
|
|
func (c *DNSContext) SetType(tp string) {
|
|
c.tp = tp
|
|
}
|
|
|
|
// Type return type of response
|
|
func (c *DNSContext) Type() string {
|
|
return c.tp
|
|
}
|