Browse Source

winws: return removed dp_list_have_autohostlist()

pull/666/head
bol-van 5 months ago
parent
commit
a6ef91124e
  1. 8
      nfq/params.c
  2. 1
      nfq/params.h

8
nfq/params.c

@ -228,3 +228,11 @@ void dp_list_destroy(struct desync_profile_list_head *head)
dp_entry_destroy(entry);
}
}
bool dp_list_have_autohostlist(struct desync_profile_list_head *head)
{
struct desync_profile_list *dpl;
LIST_FOREACH(dpl, head, next)
if (dpl->dp.hostlist_auto)
return true;
return false;
}

1
nfq/params.h

@ -90,6 +90,7 @@ struct desync_profile_list {
LIST_HEAD(desync_profile_list_head, desync_profile_list);
struct desync_profile_list *dp_list_add(struct desync_profile_list_head *head);
void dp_list_destroy(struct desync_profile_list_head *head);
bool dp_list_have_autohostlist(struct desync_profile_list_head *head);
struct params_s
{

Loading…
Cancel
Save