diff options
author | a-nijhara <a.nijhara@samsung.com> | 2024-10-25 10:05:20 +0530 |
---|---|---|
committer | a-nijhara <a.nijhara@samsung.com> | 2024-10-25 11:28:39 +0530 |
commit | bd6962e0009c6c59342cb367728cdb5a1d1ba99c (patch) | |
tree | 4a79cdb6211d621a55c980a4258d090e88e30749 | |
parent | 9a51d6cb851306c694c2b7588ccf8d878584bee2 (diff) | |
download | toybox-tizen_7.0.tar.gz toybox-tizen_7.0.tar.bz2 toybox-tizen_7.0.zip |
Add DHCP option value 43accepted/tizen/7.0/unified/20241025.155448tizen_7.0accepted/tizen_7.0_unified
Change-Id: Ic8d36bee63e34b43cfa50a357157210649ac4623
-rw-r--r-- | toys/pending/dhcpd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/pending/dhcpd.c b/toys/pending/dhcpd.c index 3bac14d..5bfbe0e 100644 --- a/toys/pending/dhcpd.c +++ b/toys/pending/dhcpd.c @@ -316,6 +316,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; }; |