refactor: DNS

This commit is contained in:
世界 2024-12-02 23:17:01 +08:00
parent 8bc14592d7
commit 364a055f77
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
84 changed files with 4121 additions and 1735 deletions

View file

@ -2,4 +2,11 @@
package include
import _ "github.com/sagernet/sing-box/transport/dhcp"
import (
"github.com/sagernet/sing-box/dns"
"github.com/sagernet/sing-box/dns/transport/dhcp"
)
func registerDHCPTransport(registry *dns.TransportRegistry) {
dhcp.RegisterTransport(registry)
}