sing-box/include/dhcp_stub.go

19 lines
503 B
Go
Raw Normal View History

2023-02-08 08:28:52 +00:00
//go:build !with_dhcp
package include
import (
"context"
"github.com/sagernet/sing-dns"
E "github.com/sagernet/sing/common/exceptions"
"github.com/sagernet/sing/common/logger"
N "github.com/sagernet/sing/common/network"
)
func init() {
2023-04-08 00:58:01 +00:00
dns.RegisterTransport([]string{"dhcp"}, func(name string, ctx context.Context, logger logger.ContextLogger, dialer N.Dialer, link string) (dns.Transport, error) {
2023-02-08 08:28:52 +00:00
return nil, E.New(`DHCP is not included in this build, rebuild with -tags with_dhcp`)
})
}