diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-10-26 16:32:34 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-10-26 16:32:34 +0000 |
commit | 17a200456dbcb6b279efef3e2be92bc24ebd0a77 (patch) | |
tree | 8e2e054e9f781480c6a3304ca3b4eb066b258f1d /sbin/dhclient/dhcpd.h | |
parent | 86f40f24a92f411db61b7b115133b3c0809661c7 (diff) |
Give dhclient(8) the ability to use option 119, a.k.a. "Domain
Search" if supplied by the server.
Requested by a few. Original diff from Ray Lai via tech@.
Tested & ok claudio@
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index a23f3f15e42..f2868cbb164 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.151 2015/08/19 17:52:10 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.152 2015/10/26 16:32:33 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -217,6 +217,8 @@ char *pretty_print_option(unsigned int, struct option_data *, int); int pretty_print_string(unsigned char *, size_t, unsigned char *, size_t, int); int pretty_print_classless_routes(unsigned char *, size_t, unsigned char *, size_t); +int pretty_print_domain_search(unsigned char *, size_t, unsigned char *, + size_t); void do_packet(unsigned int, struct in_addr, struct ether_addr *); /* errwarn.c */ |