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

  /src/usr.sbin/wgconfig/
wgconfig.c 593 prop_dictionary_t prop_allowedip; local in function:handle_option_allowed_ips
599 prop_allowedip = prop_dictionary_create();
600 if (prop_allowedip == NULL)
620 if (!prop_dictionary_set_uint8(prop_allowedip, "family",
644 if (!prop_dictionary_set_data(prop_allowedip, "ip",
647 if (!prop_dictionary_set_uint16(prop_allowedip, "cidr", cidr))
651 prop_array_set(allowedips, i, prop_allowedip);
  /src/sys/net/
if_wg.c 4743 prop_dictionary_t prop_allowedip; local in function:wg_handle_prop_peer
4745 while ((prop_allowedip = prop_object_iterator_next(_it)) != NULL) {
4748 if (!prop_dictionary_get_int(prop_allowedip, "family",
4751 if (!prop_dictionary_get_data(prop_allowedip, "ip",
4754 if (!prop_dictionary_get_uint8(prop_allowedip, "cidr",
5105 prop_dictionary_t prop_allowedip; local in function:wg_ioctl_get
5107 prop_allowedip = prop_dictionary_create();
5108 if (prop_allowedip == NULL)
5111 if (!prop_dictionary_set_int(prop_allowedip, "family",
5114 if (!prop_dictionary_set_uint8(prop_allowedip, "cidr"
    [all...]

Completed in 48 milliseconds