| /src/etc/rc.d/ |
| ppp | 27 # /etc/ppp/peers and $ppp_peers contain boot configuration 29 # file in /etc/ppp/peers of the same name, will be run as 38 if [ -f /etc/ppp/peers/$peer ]; then
|
| /src/usr.sbin/ldpd/ |
| ldp_peer.h | 75 SLIST_ENTRY(ldp_peer) peers; 84 /* LDP Peers States */
|
| ldp_peer.c | 166 SLIST_INSERT_HEAD(&ldp_peer_head, p, peers); 235 SLIST_FOREACH(p, &ldp_peer_head, peers) { 251 SLIST_REMOVE(&ldp_peer_head, p, ldp_peer, peers); 265 SLIST_FOREACH(p, &ldp_peer_head, peers) { 284 SLIST_FOREACH(p, &ldp_peer_head, peers) 296 SLIST_FOREACH(p, &ldp_peer_head, peers)
|
| ldp_command.c | 412 SLIST_FOREACH(p, &ldp_peer_head, peers) { 486 SLIST_FOREACH(p, &ldp_peer_head, peers) {
|
| tlv_stack.c | 324 SLIST_FOREACH(p, &ldp_peer_head, peers) 403 SLIST_FOREACH(p, &ldp_peer_head, peers)
|
| socketops.c | 744 SLIST_FOREACH(p, &ldp_peer_head, peers) 748 SLIST_FOREACH_SAFE(p, &ldp_peer_head, peers, ptmp) 768 SLIST_FOREACH(p, &ldp_peer_head, peers) 894 SLIST_FOREACH(p, &ldp_peer_head, peers) { 1289 * For now I just assume peers are processing messages
|
| mpls_routes.c | 815 SLIST_FOREACH(p, &ldp_peer_head, peers)
|
| /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...] |