Files
sing-box-extended-mirror/include/dhcp.go
T

13 lines
236 B
Go
Raw Normal View History

2023-02-08 16:28:52 +08:00
//go:build with_dhcp
package include
2025-03-16 14:50:44 +08:00
import (
"github.com/sagernet/sing-box/dns"
"github.com/sagernet/sing-box/dns/transport/dhcp"
)
func registerDHCPTransport(registry *dns.TransportRegistry) {
dhcp.RegisterTransport(registry)
}