diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2021-07-26 09:26:37 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2021-07-26 09:26:37 +0000 |
commit | 2aa992f431510f43f6d4aa49c7650a9ec36f9961 (patch) | |
tree | b00a349f051d8fcc89ea9cc5ace5d8a9c7a87b3d /sbin/dhcpleased/Makefile | |
parent | 1e8613138440584fba694595981337d3bd98e652 (diff) |
Implement possibility to send vendor class identifier (option 60) and
client identifier (option 61). Some dhcp servers expect these options
and refuse to hand out a lease without them.
Need for vendor class identifier pointed out & tested by bket
Need for client identifier pointed out by sthen
Input & reads OK sthen (as part of a larger diff)
OK kn (as part of a larger diff)
Diffstat (limited to 'sbin/dhcpleased/Makefile')
-rw-r--r-- | sbin/dhcpleased/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/dhcpleased/Makefile b/sbin/dhcpleased/Makefile index 8b18a7a7ff4..78069924947 100644 --- a/sbin/dhcpleased/Makefile +++ b/sbin/dhcpleased/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.1 2021/02/26 16:16:37 florian Exp $ +# $OpenBSD: Makefile,v 1.2 2021/07/26 09:26:36 florian Exp $ PROG= dhcpleased SRCS= bpf.c checksum.c control.c dhcpleased.c engine.c frontend.c log.c +SRCS+= parse.y printconf.c -MAN= dhcpleased.8 +MAN= dhcpleased.8 dhcpleased.conf.5 #DEBUG= -g -DDEBUG=3 -O0 |