aboutsummaryrefslogtreecommitdiff
path: root/util/fptr_wlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/fptr_wlist.c')
-rw-r--r--util/fptr_wlist.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/util/fptr_wlist.c b/util/fptr_wlist.c
index f5da501de19b..84d41cc84641 100644
--- a/util/fptr_wlist.c
+++ b/util/fptr_wlist.c
@@ -131,6 +131,7 @@ fptr_whitelist_comm_timer(void (*fptr)(void*))
else if(fptr == &auth_xfer_timer) return 1;
else if(fptr == &auth_xfer_probe_timer_callback) return 1;
else if(fptr == &auth_xfer_transfer_timer_callback) return 1;
+ else if(fptr == &mesh_serve_expired_callback) return 1;
return 0;
}
@@ -619,3 +620,9 @@ int fptr_whitelist_inplace_cb_query_response(
return 0;
}
+int fptr_whitelist_serve_expired_lookup(serve_expired_lookup_func_type* fptr)
+{
+ if(fptr == &mesh_serve_expired_lookup)
+ return 1;
+ return 0;
+}