Add DHCP DNS server support

This commit is contained in:
世界 2023-02-08 16:28:52 +08:00
parent df3a982141
commit 7ea9d48987
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
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
)