| /src/usr.sbin/arp/ |
| Makefile | 6 RUMPPRG= arp 7 MAN= arp.4 arp.8
|
| /src/tests/net/arp/ |
| Makefile | 6 TESTSDIR= ${TESTSBASE}/net/arp 8 .for name in arp dad
|
| t_arp.sh | 52 $DEBUG && rump.arp -n -a 67 rump.sysctl -w net.inet.arp.nd_reachable=$keep 78 $DEBUG && rump.arp -n -a 80 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n $IP4SRC 81 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n $IP4DST 87 local timeout=$(env RUMP_SERVER=$SOCKSRC rump.arp -n $addr |grep $addr|awk '{print $7;}') 106 atf_check -s exit:0 -o ignore rump.arp -s $IP4SRC $macaddr 115 $DEBUG && rump.arp -n -a 116 atf_check -s not-exit:0 -o ignore -e match:'no entry' rump.arp -n $IP4SRC 118 atf_check -s exit:0 -o not-match:'permanent' rump.arp -n $IP4DS [all...] |
| /src/sys/lib/libsa/ |
| arp.c | 1 /* $NetBSD: arp.c,v 1.35 2019/03/31 20:08:45 christos Exp $ */ 39 * @(#) Header: arp.c,v 1.5 93/07/15 05:52:26 leres Exp (LBL) 81 #define ARP_NUM 8 /* need at most 3 arp entries */ 96 /* Broadcast an ARP packet, asking who has addr on interface d */ 107 struct ether_arp arp; member in struct:__anon6903::__anon6904 114 struct ether_arp arp; member in struct:__anon6905::__anon6906 136 ah = &wbuf.data.arp; 158 ah = &rbuf.data.arp; 213 printf("not arp type=%d\n", etype); 245 printf("not ARP reply\n") 277 struct ether_arp *arp = pkt; local [all...] |
| rarp.c | 39 * @(#) Header: arp.c,v 1.5 93/07/15 05:52:26 leres Exp (LBL) 93 struct ether_arp arp; member in struct:__anon6938::__anon6939 94 u_char pad[18]; /* 60 - sizeof(arp) */ 100 struct ether_arp arp; member in struct:__anon6940::__anon6941 119 ap = &wbuf.data.arp; 136 ap = &rbuf.data.arp;
|
| /src/external/bsd/ipf/dist/iplang/ |
| iplang.h | 24 typedef struct arp { struct 27 struct arp *arp_next;
|
| /src/external/bsd/ipf/bin/ipresend/ |
| Makefile | 7 SRCS= ipresend.c ip.c resend.c sbpf.c sock.c 44arp.c
|
| /src/external/bsd/ipf/bin/iptest/ |
| Makefile | 7 SRCS= iptest.c iptests.c ip.c sbpf.c sock.c 44arp.c
|
| /src/external/lgpl3/gmp/dist/mpn/powerpc64/mode64/p9/ |
| add_n_sub_n.asm | 44 define(`arp', `r3') 76 addi arp, arp, 8 85 std r0, -8(arp) 91 std r0, 0(arp) 97 addi arp, arp, 16 101 L(end): std r0, -8(arp) 105 std r0, 0(arp)
|
| /src/tests/net/ |
| Makefile | 9 TESTS_SUBDIRS+= altq arp bpf bpfilter can carp icmp if if_bridge if_gif
|
| /src/external/bsd/dhcpcd/dist/src/ |
| ipv4ll.h | 41 #include "arp.h" 52 struct arp_state *arp; member in struct:ipv4ll_state
|
| ipv4ll.c | 41 #include "arp.h" 187 /* This is the callback by ARP freeing */ 194 if (state != NULL && state->arp == astate) 195 state->arp = NULL; 198 /* This is us freeing any ARP state */ 205 if (state == NULL || state->arp == NULL) 208 eloop_timeout_delete(ifp->ctx->eloop, NULL, state->arp); 209 arp_free(state->arp); 210 state->arp = NULL; 429 state->arp = astate = arp_new(ifp, &state->pickedaddr) [all...] |
| arp.c | 3 * dhcpcd - ARP handler 46 #include "arp.h" 58 #if defined(ARP) 63 /* ARP debugging can be quite noisy. Enable this for more noise! */ 170 * broadcast an ARP announcement. 173 * the other IPv4LL client will receieve two ARP 180 * conflicting ARP packet was received, and then 181 * broadcasts one single ARP Announcement. The host then 209 arp_validate(const struct interface *ifp, struct arphdr *arp) 213 if (arp->ar_hrd != htons(ifp->hwtype) [all...] |
| /src/external/bsd/ipf/bin/ipsend/ |
| Makefile | 8 sock.c 44arp.c
|
| /src/external/bsd/ipf/dist/ipsend/ |
| ipsend.h | 38 extern int arp __P((char *, char *));
|
| larp.c | 54 * ARP for the MAC address corresponding 58 int arp(ip, ether) function 79 perror("arp: socket");
|
| resend.c | 104 if (gwip.s_addr && (arp((char *)&gwip, dhost) == -1)) 106 perror("arp"); 118 if (arp((char *)&gwip, 120 perror("arp");
|
| 44arp.c | 1 /* $NetBSD: 44arp.c,v 1.2 2016/04/04 07:37:07 ozaki-r Exp $ */ 4 * Based upon 4.4BSD's /usr/sbin/arp 65 int arp(addr, eaddr) function
|
| arp.c | 1 /* $NetBSD: arp.c,v 1.2 2012/07/22 14:27:35 darrenr Exp $ */ 4 * arp.c (C) 1995-1998 Darren Reed 9 static const char sccsid[] = "@(#)arp.c 1.4 1/11/96 (C)1995 Darren Reed"; 10 static const char rcsid[] = "@(#)Id: arp.c,v 1.1.1.2 2012/07/22 13:44:35 darrenr Exp $"; 63 * ARP for the MAC address corresponding 67 int arp(ip, ether) function 104 perror("arp: socket");
|
| /src/crypto/external/bsd/heimdal/dist/lib/base/ |
| heimbase.c | 567 struct ar_tls *arp; local 574 arp = HEIMDAL_getspecific(ar_key); 575 if (arp == NULL) { 577 arp = calloc(1, sizeof(*arp)); 578 if (arp == NULL) 580 HEIMDAL_setspecific(ar_key, arp, ret); 582 free(arp); 586 return arp;
|
| /src/tests/net/route/ |
| t_flags.sh | 152 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1 168 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1 191 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1 211 atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1 353 add_test llinfo "Tests route flags: ARP caches"
|
| /src/external/cddl/osnet/dist/common/ctf/ |
| ctf_create.c | 834 ctf_add_array(ctf_file_t *fp, uint_t flag, const ctf_arinfo_t *arp) 840 if (arp == NULL) 844 if (ctf_lookup_by_id(&fpd, arp->ctr_contents) == NULL && 845 ctf_dtd_lookup(fp, arp->ctr_contents) == NULL) 849 if (ctf_lookup_by_id(&fpd, arp->ctr_index) == NULL && 850 ctf_dtd_lookup(fp, arp->ctr_index) == NULL) 858 dtd->dtd_u.dtu_arr = *arp; 859 ctf_ref_inc(fp, arp->ctr_contents); 860 ctf_ref_inc(fp, arp->ctr_index); 866 ctf_set_array(ctf_file_t *fp, ctf_id_t type, const ctf_arinfo_t *arp) [all...] |
| /src/external/mpl/dhcp/dist/client/scripts/ |
| bsdos | 144 arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' |sh 203 arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ 253 arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \
|
| /src/sys/arch/mips/conf/ |
| files.sibyte | 42 device sbmac: arp, ether, ifnet, mii, mii_bitbang
|
| /src/external/mpl/dhcp/dist/ |
| Makefile.am | 22 doc/IANA-arp-parameters doc/Makefile doc/References.html \
|