Searched refs:ip4 (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-11-stable/usr.sbin/jail/tests/
H A Djail_basic_test.sh42 atf_check -s exit:0 -o ignore jail -c name=basejail persist ip4.addr=192.0.1.1
49 jail -c name=basejail persist ip4.addr=192.0.1.1
53 atf_check -s exit:0 -o ignore jail -cm name=basejail persist ip4.addr=192.0.1.1
55 atf_check -s exit:0 -o ignore jail -rc name=basejail persist ip4.addr=192.0.1.1
72 jail -c name=basejail persist ip4.addr=192.0.1.1 children.max=1
75 jail -c name=nestedjail persist ip4.addr=192.0.1.1
79 jail -c name=secondnestedjail persist ip4.addr=192.0.1.1
88 jail -c name=basejail_nochild persist ip4.addr=192.0.1.1
92 jail -c name=nestedjail persist ip4.addr=192.0.1.1
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_ud_header.c126 { STRUCT_FIELD(ip4, ver),
130 { STRUCT_FIELD(ip4, hdr_len),
134 { STRUCT_FIELD(ip4, tos),
138 { STRUCT_FIELD(ip4, tot_len),
142 { STRUCT_FIELD(ip4, id),
146 { STRUCT_FIELD(ip4, frag_off),
150 { STRUCT_FIELD(ip4, ttl),
154 { STRUCT_FIELD(ip4, protocol),
158 { STRUCT_FIELD(ip4, check),
162 { STRUCT_FIELD(ip4, sadd
[all...]
/freebsd-11-stable/sys/netinet/
H A Dtcp_lro.c224 struct ip *ip4; local
226 ip4 = (struct ip *)l3hdr;
228 cs = ip4->ip_len;
230 cs = in_addword(ntohs(ip4->ip_len) - sizeof(*ip4),
232 cs = in_pseudo(ip4->ip_src.s_addr, ip4->ip_dst.s_addr,
312 struct ip *ip4; local
318 ip4 = le->le_ip4;
321 c = ~ip4
535 tcp_lro_rx_ipv4(struct lro_ctrl *lc, struct mbuf *m, struct ip *ip4, struct tcphdr **th) argument
583 struct ip *ip4 = NULL; /* Keep compiler happy. */ local
[all...]
H A Dtcp_hostcache.h52 struct in_addr ip4; /* IP address */ member in struct:hc_metrics
H A Dtcp_lro.h46 struct ip *ip4; member in union:lro_entry::__anon12758
73 #define le_ip4 leip.ip4
H A Dtcp_hostcache.c319 if (memcmp(&inc->inc_faddr, &hc_entry->ip4,
413 hc_entry->ip4 = inc->inc_faddr;
663 hc_entry->ip4.s_addr ?
664 inet_ntoa_r(hc_entry->ip4, ip4buf) :
/freebsd-11-stable/bin/pkill/tests/
H A Dpgrep-j_test.sh24 jail -c path=/ name=${base}_1_1 ip4.addr=127.0.0.1 \
27 jail -c path=/ name=${base}_1_2 ip4.addr=127.0.0.1 \
58 jail -c path=/ name=${base}_2_1 ip4.addr=127.0.0.1 \
61 jail -c path=/ name=${base}_2_2 ip4.addr=127.0.0.1 \
80 jail -c path=/ name=${base}_3_2 ip4.addr=127.0.0.1 \
96 jail -c path=/ name=${base}_4_1 ip4.addr=127.0.0.1 \
99 jail -c path=/ name=${base}_4_2 ip4.addr=127.0.0.1 \
H A Dpkill-j_test.sh24 jail -c path=/ name=${base}_1_1 ip4.addr=127.0.0.1 \
27 jail -c path=/ name=${base}_1_2 ip4.addr=127.0.0.1 \
58 jail -c path=/ name=${base}_2_1 ip4.addr=127.0.0.1 \
61 jail -c path=/ name=${base}_2_2 ip4.addr=127.0.0.1 \
81 jail -c path=/ name=${base}_3_2 ip4.addr=127.0.0.1 \
98 jail -c path=/ name=${base}_4_1 ip4.addr=127.0.0.1 \
101 jail -c path=/ name=${base}_4_2 ip4.addr=127.0.0.1 \
/freebsd-11-stable/sys/netgraph/
H A Dng_checksum.c310 struct ip *ip4; local
318 ip4 = (struct ip *) mtodo(m, l3_offset);
320 if (ip4->ip_v != IPVERSION)
323 hlen = ip4->ip_hl << 2;
324 plen = ntohs(ip4->ip_len);
330 ip4->ip_sum = 0;
334 ip4->ip_sum = in_cksum_hdr(ip4);
336 ip4->ip_sum = in_cksum_skip(m, l3_offset + hlen, l3_offset);
347 if (ip4
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_rx.c134 struct ip *ip4 = NULL; local
152 ip4 = (struct ip *)(eh + 1);
153 th = (struct tcphdr *)(ip4 + 1);
197 if (ip4) {
198 ip4->ip_ttl = cqe->lro_min_ttl;
199 ip4->ip_len = cpu_to_be16(tot_len);
200 ip4->ip_sum = 0;
201 ip4->ip_sum = in_cksum(mb, ip4->ip_hl << 2);
/freebsd-11-stable/tools/regression/netinet/udpconnectjail/
H A Dudpconnectjail.c108 thejail.ip4 = &ia4;
/freebsd-11-stable/usr.sbin/trpt/
H A Dtrpt.c311 struct ip *ip4; local
323 ip4 = (struct ip *)ip;
334 ip4 = (struct ip *)ip;
354 inet_ntoa(ip4->ip_src),
362 inet_ntoa(ip4->ip_dst),
372 ip4->ip_len;
/freebsd-11-stable/usr.sbin/ppp/
H A Dncpaddr.h41 } ip4; member in union:ncprange::__anon8882
H A Dncpaddr.c71 #define ncprange_ip4addr u.ip4.ipaddr
72 #define ncprange_ip4mask u.ip4.mask
73 #define ncprange_ip4width u.ip4.width
/freebsd-11-stable/lib/libcasper/services/cap_dns/tests/
H A Ddns_test.c225 struct in_addr ip4; local
304 inet_pton(AF_INET, GOOGLE_DNS_IPV4, &ip4);
305 hps = gethostbyaddr(&ip4, sizeof(ip4), AF_INET);
308 hpc = cap_gethostbyaddr(capdns, &ip4, sizeof(ip4), AF_INET);
/freebsd-11-stable/sys/kern/
H A Dkern_jail.c150 [7] = "ip4.saddrsel",
161 [7] = "ip4.nosaddrsel",
179 { "ip4", PR_IP4_USER, PR_IP4_USER },
422 optiov[opt.uio_iovcnt].iov_base = "ip4.addr";
423 optiov[opt.uio_iovcnt].iov_len = sizeof("ip4.addr");
430 error = copyin(j->ip4, u_ip4, optiov[opt.uio_iovcnt].iov_len);
489 struct in_addr *ip4; local
550 ip4 = NULL;
657 vfs_opterror(opts, "ip4 cannot be changed after creation");
766 error = vfs_getopt(opts, "ip4
3468 struct in_addr *ip4 = NULL; local
[all...]
/freebsd-11-stable/etc/
H A Drc.firewall166 ${fwcmd} add 50 divert natd ip4 from any to any via ${natd_interface}
180 ${fwcmd} add 50 nat 123 ip4 from any to any via ${firewall_nat_interface}
330 ${fwcmd} add divert natd ip4 from any to any via ${natd_interface}
403 ${fwcmd} add deny log ip4 from any to any in via ${oif} setup proto tcp
/freebsd-11-stable/sys/ofed/include/rdma/
H A Dib_pack.h270 struct ib_unpacked_ip4 ip4; member in struct:ib_ud_header
/freebsd-11-stable/sbin/hastd/
H A Dsubr.c196 jailst.ip4 = NULL;
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32.h192 uint32_t ip4; member in struct:jail32
/freebsd-11-stable/sys/netpfil/ipfw/nat64/
H A Dnat64_translate.c154 struct ip *ip4; local
158 ip4 = mtod(m, struct ip *);
159 switch (ip4->ip_v) {
161 dst4.sin_addr = ip4->ip_dst;
203 struct ip *ip4; local
206 ip4 = mtod(m, struct ip *);
207 switch (ip4->ip_v) {
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dippool_y.y61 struct in_addr ip4;
90 %type <ip4> ipv4
/freebsd-11-stable/tools/regression/priv/
H A Dmain.c454 j.ip4 = &ia4;
/freebsd-11-stable/sys/sys/
H A Djail.h49 struct in_addr *ip4; member in struct:jail
/freebsd-11-stable/contrib/unbound/sldns/
H A Dwire2str.c147 { LDNS_WIREPARSE_ERR_SYNTAX_IP4, "Conversion error, ip4 addr expected" },
1566 case 1: /* ip4 */
1877 uint8_t ip4[4]; local
1878 memset(ip4, 0, sizeof(ip4));
1885 memmove(ip4, data+4, len-4);
1886 if(!inet_ntop(AF_INET, ip4, buf, (socklen_t)sizeof(buf))) {

Completed in 816 milliseconds

12