p2p: Use a longer DHCP timeout

With some devices the 10 seconds are not enough for the P2P Group Owner
to give us an address but I think we still want to use a timeout as
short as possible so that the user doesn't wait too long if the
connection isn't working.
This commit is contained in:
Andrew Zaborowski 2020-07-31 03:31:31 +02:00 committed by Denis Kenzior
parent 2dea8bcc69
commit 3910b9d9c3
1 changed files with 1 additions and 1 deletions

View File

@ -667,7 +667,7 @@ static void p2p_start_dhcp(struct p2p_device *dev)
if (!l_settings_get_uint(iwd_get_config(), "P2P", "DHCPTimeout",
&dhcp_timeout_val))
dhcp_timeout_val = 10; /* 10s default */
dhcp_timeout_val = 20; /* 20s default */
if (!dev->conn_netconfig) {
dev->conn_netconfig = netconfig_new(ifindex);