mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-02 19:37:37 +03:00
12 lines
236 B
Go
12 lines
236 B
Go
//go:build with_dhcp
|
|
|
|
package include
|
|
|
|
import (
|
|
"github.com/sagernet/sing-box/dns"
|
|
"github.com/sagernet/sing-box/dns/transport/dhcp"
|
|
)
|
|
|
|
func registerDHCPTransport(registry *dns.TransportRegistry) {
|
|
dhcp.RegisterTransport(registry)
|
|
}
|