From df022ffac4465f493cd576ec03fb6518806564ea Mon Sep 17 00:00:00 2001 From: a-nijhara Date: Fri, 25 Oct 2024 10:05:20 +0530 Subject: [PATCH] Add DHCP option value 43 Change-Id: Ic8d36bee63e34b43cfa50a357157210649ac4623 --- toys/pending/dhcpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/toys/pending/dhcpd.c b/toys/pending/dhcpd.c index 751b8c6..55a7919 100644 --- a/toys/pending/dhcpd.c +++ b/toys/pending/dhcpd.c @@ -317,6 +317,7 @@ static option_val_t options_list[] = { {"routes" , DHCP_STCRTS | 0x21, NULL, 0}, {"staticroutes" , DHCP_STCRTS | 0x79, NULL, 0}, {"msstaticroutes" , DHCP_STCRTS | 0xf9, NULL, 0}, + {"vendor-encapsulated-options", DHCP_STRING | 0x2b, NULL, 0}, }; struct fd_pair { int rd; int wr; }; -- 2.7.4