summaryrefslogtreecommitdiff
path: root/source3/lib/interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/interface.c')
-rw-r--r--source3/lib/interface.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c
index 9d0b966390..e2c9294b28 100644
--- a/source3/lib/interface.c
+++ b/source3/lib/interface.c
@@ -231,6 +231,18 @@ void load_interfaces(void)
}
+void gfree_interfaces(void)
+{
+ while (local_interfaces) {
+ struct interface *iface = local_interfaces;
+ DLIST_REMOVE(local_interfaces, local_interfaces);
+ ZERO_STRUCTPN(iface);
+ SAFE_FREE(iface);
+ }
+
+ SAFE_FREE(probed_ifaces);
+}
+
/****************************************************************************
return True if the list of probed interfaces has changed
****************************************************************************/