HomeSort by: relevance | last modified time | path
    Searched defs:allowedips (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.sbin/wgconfig/
wgconfig.c 132 prop_array_t allowedips; local
137 prop_obj = prop_dictionary_get(peer, "allowedips");
141 errx(EXIT_FAILURE, "invalid allowedips");
142 allowedips = prop_obj;
146 it = prop_array_iterator(allowedips);
580 prop_array_t allowedips; local
588 allowedips = prop_array_create();
589 if (allowedips == NULL)
651 prop_array_set(allowedips, i, prop_allowedip);
653 prop_dictionary_set(prop_dict, "allowedips", allowedips)
    [all...]
  /src/sys/net/
if_wg.c 145 * - It has a list of IP addresses and sub networks called allowedips
4906 prop_array_t allowedips; local
4908 allowedips = prop_dictionary_get(peer, "allowedips");
4909 if (allowedips == NULL)
4912 prop_object_iterator_t _it = prop_array_iterator(allowedips);
5288 prop_array_t allowedips = prop_array_create();
5289 if (allowedips == NULL)
5327 prop_array_set(allowedips, j, prop_allowedip);
5331 prop_dictionary_set(prop_peer, "allowedips", allowedips)
    [all...]

Completed in 21 milliseconds