refactor: DNS

This commit is contained in:
世界 2024-12-02 23:17:01 +08:00
parent ff31c469a0
commit 6ec57e5e7e
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
89 changed files with 4761 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)
}