Add DHCP DNS server support

This commit is contained in:
世界
2023-02-08 16:28:52 +08:00
parent df3a982141
commit 7ea9d48987
12 changed files with 427 additions and 38 deletions

8
constant/dhcp.go Normal file
View File

@@ -0,0 +1,8 @@
package constant
import "time"
const (
DHCPTTL = time.Hour
DHCPTimeout = time.Minute
)