Symbol: neighbor
sbin/ifconfig/ifconfig.c
4152
setpwe3neighbor(const char *label, const char *neighbor)
sbin/ifconfig/ifconfig.c
4168
error = getaddrinfo(neighbor, NULL, &hints, &res);
sbin/ifconfig/ifconfig.c
4170
errx(1, "pweneighbor %s: %s", neighbor, gai_strerror(error));
usr.sbin/bgpctl/bgpctl.c
1251
if (req->neighbor.addr.aid != AID_UNSPEC &&
usr.sbin/bgpctl/bgpctl.c
1252
memcmp(&req->neighbor.addr, &ctl.remote_addr,
usr.sbin/bgpctl/bgpctl.c
127
memcpy(&neighbor.addr, &res->peeraddr, sizeof(neighbor.addr));
usr.sbin/bgpctl/bgpctl.c
128
strlcpy(neighbor.descr, res->peerdesc, sizeof(neighbor.descr));
usr.sbin/bgpctl/bgpctl.c
129
neighbor.is_group = res->is_group;
usr.sbin/bgpctl/bgpctl.c
130
strlcpy(neighbor.reason, res->reason, sizeof(neighbor.reason));
usr.sbin/bgpctl/bgpctl.c
1329
if (req->neighbor.addr.aid != AID_UNSPEC &&
usr.sbin/bgpctl/bgpctl.c
1330
memcmp(&req->neighbor.addr, &ctl.remote_addr,
usr.sbin/bgpctl/bgpctl.c
145
ribreq.neighbor = neighbor;
usr.sbin/bgpctl/bgpctl.c
232
neighbor.show_timers = (res->action == SHOW_NEIGHBOR_TIMERS);
usr.sbin/bgpctl/bgpctl.c
235
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
252
ribreq.neighbor = neighbor;
usr.sbin/bgpctl/bgpctl.c
297
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
301
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
305
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
309
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
313
&neighbor, sizeof(neighbor));
usr.sbin/bgpctl/bgpctl.c
361
ribreq.neighbor = neighbor;
usr.sbin/bgpctl/bgpctl.c
479
if (output->neighbor == NULL)
usr.sbin/bgpctl/bgpctl.c
483
output->neighbor(&p, res);
usr.sbin/bgpctl/bgpctl.c
88
struct ctl_neighbor neighbor = { 0 };
usr.sbin/bgpctl/bgpctl.h
23
void (*neighbor)(struct peer *, struct parse_result *);
usr.sbin/bgpctl/output.c
1245
.neighbor = show_neighbor,
usr.sbin/bgpctl/output_json.c
1080
.neighbor = json_neighbor,
usr.sbin/bgpctl/output_ometric.c
426
.neighbor = ometric_neighbor_stats,
usr.sbin/bgpd/bgpd.h
1042
struct ctl_neighbor neighbor;
usr.sbin/bgpd/control.c
244
struct ctl_neighbor neighbor;
usr.sbin/bgpd/control.c
328
if (imsg_get_data(&imsg, &neighbor,
usr.sbin/bgpd/control.c
329
sizeof(neighbor)) == -1)
usr.sbin/bgpd/control.c
330
memset(&neighbor, 0, sizeof(neighbor));
usr.sbin/bgpd/control.c
334
if (!peer_matched(p, &neighbor))
usr.sbin/bgpd/control.c
338
if (!neighbor.show_timers) {
usr.sbin/bgpd/control.c
363
} else if (!neighbor.show_timers) {
usr.sbin/bgpd/control.c
375
if (imsg_get_data(&imsg, &neighbor,
usr.sbin/bgpd/control.c
376
sizeof(neighbor)) == -1) {
usr.sbin/bgpd/control.c
384
if (!peer_matched(p, &neighbor))
usr.sbin/bgpd/control.c
400
neighbor.reason[
usr.sbin/bgpd/control.c
401
sizeof(neighbor.reason) - 1] = '\0';
usr.sbin/bgpd/control.c
404
neighbor.reason);
usr.sbin/bgpd/control.c
408
neighbor.reason[
usr.sbin/bgpd/control.c
409
sizeof(neighbor.reason) - 1] = '\0';
usr.sbin/bgpd/control.c
416
neighbor.reason);
usr.sbin/bgpd/control.c
423
neighbor.reason);
usr.sbin/bgpd/control.c
480
if (peer_matched(p, &ribreq.neighbor))
usr.sbin/bgpd/parse.y
1709
neighbor : { curpeer = new_peer(); }
usr.sbin/bgpd/parse.y
1798
| groupopts_l neighbor '\n'
usr.sbin/bgpd/parse.y
315
| grammar neighbor '\n'
usr.sbin/bgpd/rde.c
3137
if (!rde_match_peer(prefix_peer(p), &req->neighbor))
usr.sbin/bgpd/rde.c
3179
if (!rde_match_peer(peer, &req->neighbor))
usr.sbin/bgpd/rde.c
3235
peer = peer_match(&ctx->req.neighbor, ctx->peerid);
usr.sbin/bgpd/rde.c
3305
peer = peer_match(&req->neighbor, 0);
usr.sbin/bgpd/rde.c
3381
} while ((peer = peer_match(&req->neighbor,
usr.sbin/ldapd/btree.c
2471
struct mpage *neighbor = NULL;
usr.sbin/ldapd/btree.c
2526
if ((neighbor = btree_get_mpage(bt, NODEPGNO(node))) == NULL)
usr.sbin/ldapd/btree.c
2528
neighbor->parent_index = mp->parent_index + 1;
usr.sbin/ldapd/btree.c
2536
if ((neighbor = btree_get_mpage(bt, NODEPGNO(node))) == NULL)
usr.sbin/ldapd/btree.c
2538
neighbor->parent_index = mp->parent_index - 1;
usr.sbin/ldapd/btree.c
2539
si = NUMKEYS(neighbor) - 1;
usr.sbin/ldapd/btree.c
2542
neighbor->parent = parent;
usr.sbin/ldapd/btree.c
2545
neighbor->pgno, NUMKEYS(neighbor), (float)PAGEFILL(bt, neighbor) / 10);
usr.sbin/ldapd/btree.c
2554
if (PAGEFILL(bt, neighbor) >= FILL_THRESHOLD && NUMKEYS(neighbor) >= 2)
usr.sbin/ldapd/btree.c
2555
return btree_move_node(bt, neighbor, si, mp, di);
usr.sbin/ldapd/btree.c
2558
return btree_merge(bt, neighbor, mp);
usr.sbin/ldapd/btree.c
2560
return btree_merge(bt, mp, neighbor);
usr.sbin/ldpd/parse.y
171
| grammar neighbor '\n'
usr.sbin/ldpd/parse.y
842
neighbor : NEIGHBOR routerid {
usr.sbin/map-mbone/mapper.c
385
u_int32_t neighbor;
usr.sbin/map-mbone/mapper.c
395
GET_ADDR(neighbor);
usr.sbin/map-mbone/mapper.c
396
neighbor = htonl(neighbor);
usr.sbin/map-mbone/mapper.c
400
if (nb->addr == neighbor) {
usr.sbin/map-mbone/mapper.c
412
nb->addr = neighbor;
usr.sbin/map-mbone/mapper.c
417
n_node = find_node(neighbor, &routers);
usr.sbin/map-mbone/mapper.c
419
ask(neighbor);
usr.sbin/map-mbone/mapper.c
526
u_int32_t neighbor;
usr.sbin/map-mbone/mapper.c
536
neighbor = *(u_int32_t*)p;
usr.sbin/map-mbone/mapper.c
539
if (neighbor == 0)
usr.sbin/map-mbone/mapper.c
541
neighbor = ifc_addr;
usr.sbin/map-mbone/mapper.c
544
if (nb->addr == neighbor) {
usr.sbin/map-mbone/mapper.c
55
struct neighbor *next;
usr.sbin/map-mbone/mapper.c
556
nb->addr = neighbor;
usr.sbin/map-mbone/mapper.c
561
n_node = find_node(neighbor, &routers);
usr.sbin/map-mbone/mapper.c
563
ask(neighbor);
usr.sbin/mrinfo/mrinfo.c
200
u_int32_t neighbor;
usr.sbin/mrinfo/mrinfo.c
202
GET_ADDR(neighbor);
usr.sbin/mrinfo/mrinfo.c
203
neighbor = htonl(neighbor);
usr.sbin/mrinfo/mrinfo.c
205
printf("%s (%s) [%d/%d]\n", inet_fmt(neighbor, s1),
usr.sbin/mrinfo/mrinfo.c
206
inet_name(neighbor), metric, thresh);
usr.sbin/mrinfo/mrinfo.c
246
u_int32_t neighbor = *(u_int32_t*)p;
usr.sbin/mrinfo/mrinfo.c
249
printf("%s (%s) [%d/%d", inet_fmt(neighbor, s1),
usr.sbin/mrinfo/mrinfo.c
250
inet_name(neighbor), metric, thresh);
usr.sbin/ospfctl/ospfctl.c
287
output->neighbor(nbr, 1);
usr.sbin/ospfctl/ospfctl.c
289
output->neighbor(nbr, 0);
usr.sbin/ospfctl/ospfctl.h
26
void (*neighbor)(struct ctl_nbr *, int);
usr.sbin/ospfctl/output.c
661
.neighbor = show_neighbor,
usr.sbin/tcpdump/print-dvmrp.c
211
u_char neighbor[4];
usr.sbin/tcpdump/print-dvmrp.c
228
GET_ADDR(neighbor);
usr.sbin/tcpdump/print-dvmrp.c
230
printf("\n\tneighbor %s", ipaddr_string(neighbor));
usr.sbin/tcpdump/print-dvmrp.c
237
u_char laddr[4], neighbor[4];
usr.sbin/tcpdump/print-dvmrp.c
253
GET_ADDR(neighbor);
usr.sbin/tcpdump/print-dvmrp.c
256
ipaddr_string(neighbor), metric, thresh);
usr.sbin/tcpdump/print-dvmrp.c
265
u_char laddr[4], neighbor[4];
usr.sbin/tcpdump/print-dvmrp.c
285
GET_ADDR(neighbor);
usr.sbin/tcpdump/print-dvmrp.c
287
printf("%s (%d/%d", ipaddr_string(neighbor),