mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-01-30 12:46:53 +00:00
13 lines
236 B
Go
13 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)
|
|
}
|