Searched refs:peers (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dtrans_lsock.h56 LIST_HEAD(, lsock_peer) peers; member in struct:lsock_port
H A Dtrans_lsock.c169 LIST_INIT(&port->peers);
177 LIST_INSERT_HEAD(&port->peers, peer, link);
230 while ((peer = LIST_FIRST(&port->peers)) != NULL)
290 LIST_INSERT_HEAD(&p->peers, peer, link);
347 peer = LIST_FIRST(&p->peers);
405 peer = LIST_FIRST(&p->peers);
409 LIST_FOREACH(peer, &p->peers, link)
/freebsd-11-stable/sys/dev/proto/
H A Dproto_busdma.h37 LIST_ENTRY(proto_tag) peers; member in struct:proto_tag
51 LIST_ENTRY(proto_md) peers; member in struct:proto_md
H A Dproto_busdma.c85 LIST_INSERT_HEAD(&parent->children, tag, peers);
125 LIST_REMOVE(tag, peers);
151 LIST_REMOVE(md, peers);
209 LIST_INSERT_HEAD(&tag->mds, md, peers);
252 LIST_INSERT_HEAD(&tag->mds, md, peers);
/freebsd-11-stable/contrib/ntp/scripts/lib/NTP/
H A DUtil.pm104 my @peers;
116 push @peers, $r;
125 return \@peers;
/freebsd-11-stable/contrib/ntp/scripts/ntpsweep/
H A Dntpsweep.in43 ($opts->{peers}, $opts->{maxlevel}, $opts->{strip});
105 my @peers;
145 push @peers, $_->{remote};
161 $known_host_peers{$host} = [@peers];
170 # append number of peers in brackets if requested and valid
179 # Loop through peers
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dibss_rsn.h49 struct ibss_rsn_peer *peers; member in struct:ibss_rsn
H A Dibss_rsn.c32 for (peer = ibss_rsn->peers; peer; peer = peer->next)
357 for (peer = ibss_rsn->peers; peer; peer = peer->next) {
552 peer->next = ibss_rsn->peers;
553 ibss_rsn->peers = peer;
643 /* remove all peers */
644 wpa_printf(MSG_DEBUG, "%s: Remove all peers", __func__);
645 peer = ibss_rsn->peers;
650 ibss_rsn->peers = peer;
657 for (prev = NULL, peer = ibss_rsn->peers; peer != NULL;
661 ibss_rsn->peers
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntp_proto.c90 * flag bits propagated from pool to individual peers
158 int peer_ntpdate; /* active peers in ntpdate mode */
528 * If preemptible and we have more peers than maxclock,
556 * set and all peers have completed the burst,
2910 * Clock was stepped. Flush all time values of all peers.
3460 static peer_select *peers = NULL; local
3486 peers_size = ALIGNED_SIZE(nlist * sizeof(*peers));
3490 peers = INC_ALIGNED_PTR(endpoint, endpoint_size);
3491 indx = INC_ALIGNED_PTR(peers, peers_size);
3494 * Initially, we populate the island with all the rifraff peers
3988 clock_combine( peer_select * peers, int npeers, int syspeer ) argument
[all...]
H A Dntp_peer.c65 * and the maintenance of three data structures involving all peers:
67 * - peer_list is a single list with all peers, suitable for scanning
68 * operations over all peers.
83 int peer_hash_count[NTP_HASH_SIZE]; /* peers in each bucket */
85 int assoc_hash_count[NTP_HASH_SIZE];/* peers in each bucket */
162 struct peer *peers; local
164 peers = eallocarray(INC_PEER_ALLOC, sizeof(*peers));
167 LINK_SLIST(peer_free, &peers[i], p_link);
659 UNLINK_SLIST(unlinked, p->dstadr->peers,
[all...]
H A Dntp_config.c804 peern = HEAD_PFIFO(ptree->peers);
1441 msyslog(LOG_ERR, "'mode' does not apply for network peers");
4299 curr_peer = HEAD_PFIFO(ptree->peers);
4462 if (ptree->peers != NULL) {
4464 UNLINK_FIFO(curr_peer, *ptree->peers, link);
4471 free(ptree->peers);
4472 ptree->peers = NULL;
5103 /* Hack to disambiguate 'server' statements for refclocks and network peers.
H A Dntp_io.c420 * - all interfaces keep a list of peers that are referencing
421 * the interface in order to quickly re-assign the peers to
866 * duplicate manycastclient associations between v6 peers using
1737 * forall peers associated with this interface
1741 * attempt to re-assign interfaces to peers
1966 * phase 2 - delete gone interfaces - reassigning peers to
1992 /* disconnect peers from deleted endpt. */
1993 while (ep->peers != NULL)
1994 set_peerdstadr(ep->peers, NULL);
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dwps_upnp_i.h112 struct dl_list peers; /* active UPnP peer sessions */ member in struct:upnp_wps_device_interface
H A Dwps_upnp_web.c471 if (dl_list_len(&iface->peers) > 3) {
474 old = dl_list_first(&iface->peers, struct upnp_wps_peer, list);
480 dl_list_add_tail(&iface->peers, &peer->list);
525 dl_list_for_each(tmp, &iface->peers, struct upnp_wps_peer, list) {
549 peer = dl_list_first(&iface->peers, struct upnp_wps_peer, list);
H A Dwps_upnp.c1149 while ((peer = dl_list_first(&iface->peers, struct upnp_wps_peer,
1193 dl_list_init(&iface->peers);
/freebsd-11-stable/contrib/bsnmp/snmp_ntp/
H A Dsnmp_ntp.c156 /* list of peers */
157 static struct peer_list peers = TAILQ_HEAD_INITIALIZER(peers); variable in typeref:struct:peer_list
932 while ((p = TAILQ_FIRST(&peers)) != NULL) {
933 TAILQ_REMOVE(&peers, p, link);
978 INSERT_OBJECT_INT(p, &peers);
1224 t = NEXT_OBJECT_INT(&peers, &value->var, sub);
1232 t = FIND_OBJECT_INT(&peers, &value->var, sub);
1240 t = FIND_OBJECT_INT(&peers, &value->var, sub);
1360 t = NEXT_OBJECT_INT(&peers,
[all...]
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_config.h216 peer_fifo * peers; member in struct:config_tree_tag
H A Dntp.h198 struct peer * peers; /* list of peers using endpt */ member in struct:interface
261 struct peer *ilink; /* list of peers for interface */
691 * To speed lookups, peers are hashed by the low order bits of the
/freebsd-11-stable/sys/dev/qlxgbe/
H A Dql_os.c2057 device_t *peers; local
2061 if (device_get_children(device_get_parent(ha->pci_dev), &peers, &count))
2065 slot = pci_get_slot(peers[i]);
2068 (pci_get_device(peers[i]) ==
2070 if (ha->pci_dev != peers[i])
2071 ha->peer_dev = peers[i];
/freebsd-11-stable/contrib/ntp/ntpdc/
H A Dntpdc_ops.c42 static void peers (struct parse *, FILE *);
98 "display list of peers the server knows about [IP Version]" },
99 { "peers", peers, { OPT|IP_VERSION, NO, NO, NO },
107 "display detailed information for one or more peers" },
110 "display statistical information for one or more peers" },
345 * peerlist - get a short list of peers
402 * peers - show peer summary
405 peers( function
427 * peers
[all...]
/freebsd-11-stable/contrib/wpa/src/pae/
H A Dieee802_1x_kay.c318 static struct ieee802_1x_kay_peer * get_peer_mi(struct dl_list *peers, argument
323 dl_list_for_each(peer, peers, struct ieee802_1x_kay_peer, list) {
1687 "KaY: The key server is not in my live peers list");
2096 "KaY: Live peers list must not be empty when generating fresh SAK");
2227 * when to elect: whenever the live peers list changes
2245 /* elect the key server among the peers */
2326 * protectFrames will be advised if the key server and one of its live peers are
2352 /* at least one of peers is MACsec-desired and requesting MACsec */
2520 /* should delete MKA instance if there are not live peers
3345 * 802.1X-2010, 9.4.3, potential peers nee
4033 mka_mib_peer(struct dl_list *peers, Boolean live, char *buf, char *end) argument
[all...]
/freebsd-11-stable/contrib/ntp/ntpq/
H A Dntpq-subs.c62 static void peers (struct parse *, FILE *);
91 "print list of association ID's and statuses for the server's peers" },
133 "read the peer variables in the variable list for multiple peers" },
136 "read the peer variables in the variable list for multiple peers" },
139 "read peer variables from multiple peers" },
142 "read peer variables from multiple peers" },
158 { "peers", peers, { OPT|IP_VERSION, NO, NO, NO },
160 "obtain and print a list of the server's peers [IP version]" },
163 "obtain and print a list of the server's peers an
2101 peers( function
[all...]

Completed in 406 milliseconds