sing-box/include/dhcp.go

13 lines
236 B
Go
Raw Normal View History

2023-02-08 08:28:52 +00:00
//go:build with_dhcp
package include
2024-12-02 15:17:01 +00:00
import (
"github.com/sagernet/sing-box/dns"
"github.com/sagernet/sing-box/dns/transport/dhcp"
)
func registerDHCPTransport(registry *dns.TransportRegistry) {
dhcp.RegisterTransport(registry)
}