All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/14] netconfig: Reset {v4, v6}_configured to false on netconfig stop
@ 2022-06-15 22:47 Andrew Zaborowski
  2022-06-15 22:47 ` [PATCH 07/14] netconfig: Add getters for DNS addresses and domain names Andrew Zaborowski
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew Zaborowski @ 2022-06-15 22:47 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

---
 ell/netconfig.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ell/netconfig.c b/ell/netconfig.c
index 2a1b3ed..5de5d74 100644
--- a/ell/netconfig.c
+++ b/ell/netconfig.c
@@ -1163,6 +1163,8 @@ LIB_EXPORT void l_netconfig_stop(struct l_netconfig *netconfig)
 	netconfig->v4_subnet_route = NULL;
 	netconfig->v4_default_route = NULL;
 	netconfig->v6_address = NULL;
+	netconfig->v4_configured = false;
+	netconfig->v6_configured = false;
 
 	l_dhcp_client_stop(netconfig->dhcp_client);
 	l_dhcp6_client_stop(netconfig->dhcp6_client);
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-18  0:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-15 22:47 [PATCH 01/14] netconfig: Reset {v4, v6}_configured to false on netconfig stop Andrew Zaborowski
2022-06-15 22:47 ` [PATCH 07/14] netconfig: Add getters for DNS addresses and domain names Andrew Zaborowski
     [not found]   ` <da1459dd-2402-161e-b24f-f55a02356a31@gmail.com>
2022-06-18  0:38     ` Andrew Zaborowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.