mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Add DHCP DNS server support
This commit is contained in:
parent
df3a982141
commit
7ea9d48987
12 changed files with 427 additions and 38 deletions
5
include/dhcp.go
Normal file
5
include/dhcp.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
//go:build with_dhcp
|
||||
|
||||
package include
|
||||
|
||||
import _ "github.com/sagernet/sing-box/transport/dhcp"
|
18
include/dhcp_stub.go
Normal file
18
include/dhcp_stub.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
//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() {
|
||||
dns.RegisterTransport([]string{"dhcp"}, func(ctx context.Context, logger logger.ContextLogger, dialer N.Dialer, link string) (dns.Transport, error) {
|
||||
return nil, E.New(`DHCP is not included in this build, rebuild with -tags with_dhcp`)
|
||||
})
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue