From 0231ac1c86578a8dac2ae6531d30c71ba89688e1 Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Fri, 21 May 2021 11:14:46 +0200 Subject: dhcp: Increase lease time to maximum allowed value ...to make things simpler at least for the moment being. Signed-off-by: Stefano Brivio --- dhcp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dhcp.c') diff --git a/dhcp.c b/dhcp.c index 2e391b1..cff9403 100644 --- a/dhcp.c +++ b/dhcp.c @@ -43,11 +43,11 @@ struct opt { }; static struct opt opts[255] = { - [1] = { 0, 4, { 0 }, 0, { 0 }, }, /* Subnet mask */ - [3] = { 0, 4, { 0 }, 0, { 0 }, }, /* Router */ - [6] = { 0, 4, { 0 }, 0, { 0 }, }, /* DNS */ - [51] = { 0, 4, { 60 }, 0, { 0 }, }, /* Lease time */ - [53] = { 0, 1, { 0 }, 0, { 0 }, }, /* Message type */ + [1] = { 0, 4, { 0 }, 0, { 0 }, }, /* Mask */ + [3] = { 0, 4, { 0 }, 0, { 0 }, }, /* Router */ + [6] = { 0, 4, { 0 }, 0, { 0 }, }, /* DNS */ + [51] = { 0, 4, { 0xff, 0xff, 0xff, 0xff }, 0, { 0 }, }, /* Lease time */ + [53] = { 0, 1, { 0 }, 0, { 0 }, }, /* Type */ #define DHCPDISCOVER 1 #define DHCPOFFER 2 #define DHCPREQUEST 3 -- cgit v1.2.3