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

  /src/usr.sbin/wgconfig/
wgconfig.c 284 prop_array_t peers; local in function:cmd_show_all
303 prop_obj = prop_dictionary_get(prop_dict, "peers");
307 errx(EXIT_FAILURE, "invalid peers");
308 peers = prop_obj;
310 prop_object_iterator_t it = prop_array_iterator(peers);
349 prop_obj = prop_dictionary_get(prop_dict, "peers");
353 errx(EXIT_FAILURE, "invalid peers");
355 prop_array_t peers = prop_obj; local in function:cmd_show_peer
356 prop_object_iterator_t it = prop_array_iterator(peers);
  /src/sys/net/
if_wg.c 135 * - It has a list of peers (struct wg_peer)
1565 * coordinated, so that peers generally agree on what coin is
5014 prop_array_t peers = NULL; local in function:wg_ioctl_get
5038 peers = prop_array_create();
5039 if (peers == NULL)
5147 prop_array_set(peers, i, prop_peer);
5158 prop_dictionary_set(prop_dict, "peers", peers);
5159 prop_object_release(peers);
5160 peers = NULL
    [all...]

Completed in 53 milliseconds