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. --- src/p2p.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p2p.c b/src/p2p.c index da98f2a7..3b38f738 100644 --- a/src/p2p.c +++ b/src/p2p.c @@ -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); -- 2.25.1