| /src/usr.sbin/pf/etc/defaults/ |
| pf.boot.conf | 26 # Allow IPv6 router/neighbor solicitation and advertisement. 27 pass out inet6 proto ipv6-icmp all icmp6-type neighbrsol 28 pass in inet6 proto ipv6-icmp all icmp6-type neighbradv 29 pass out inet6 proto ipv6-icmp all icmp6-type routersol 30 pass in inet6 proto ipv6-icmp all icmp6-type routeradv
|
| /src/tests/ipf/input/ |
| Makefile | 38 ipv6.1 \ 39 ipv6.2 \ 40 ipv6.3 \ 41 ipv6.4 \ 42 ipv6.5 \ 43 ipv6.6 \
|
| /src/tests/usr.sbin/stdhosts/ |
| t_stdhosts.sh | 67 atf_test_case ipv6 cleanup 70 atf_set "descr" "Test IPv6 addresses with stdhosts(8)" 83 atf_add_test_case ipv6
|
| /src/tests/ipf/expected/ |
| Makefile | 85 ipv6.1 \ 86 ipv6.2 \ 87 ipv6.3 \ 88 ipv6.4 \ 89 ipv6.5 \ 90 ipv6.6 \
|
| /src/external/bsd/nsd/dist/ |
| xdp-util.h | 14 #include <linux/ipv6.h> 82 * Calculate UDP checksum with IPv6 pseudo-header 84 static inline uint16_t calc_csum_udp6(struct udphdr *udp, struct ipv6hdr *ipv6) { 88 csum_add_data(&sum, &ipv6->saddr, sizeof(ipv6->saddr)); 89 csum_add_data(&sum, &ipv6->daddr, sizeof(ipv6->daddr));
|
| xdp-dns-redirect_kern.c | 9 #include <linux/ipv6.h> /* for struct ipv6hdr */ 96 struct ipv6hdr *ipv6; local 113 // NOTE: Maybe not use goto and just have the redirect call here and in IPv6? 117 if (!(ipv6 = parse_ipv6hdr(&c)) || ipv6->nexthdr != IPPROTO_UDP)
|
| xdp-server.c | 41 #include <linux/ipv6.h> 137 * Check whether destination IPv6 is in allowed IPs list 139 static int dest_ip_allowed6(struct xdp_server *xdp, struct ipv6hdr *ipv6); 179 static inline void swap_ipv6(struct ipv6hdr *ipv6); 182 static inline void *parse_ipv6(struct ipv6hdr *ipv6); 556 static int dest_ip_allowed6(struct xdp_server *xdp, struct ipv6hdr *ipv6) { 565 &ipv6->daddr, 656 static inline void swap_ipv6(struct ipv6hdr *ipv6) { 658 memcpy(&tmp_ip, &ipv6->saddr, sizeof(tmp_ip)); 659 memcpy(&ipv6->saddr, &ipv6->daddr, sizeof(tmp_ip)) 747 struct ipv6hdr *ipv6 = NULL; local [all...] |
| /src/etc/defaults/ |
| npf.boot.conf | 34 # Allow IPv6 router/neighbor solicitation and advertisement. 35 pass out family inet6 proto ipv6-icmp icmp-type rtsol all 36 pass in family inet6 proto ipv6-icmp icmp-type rtadv all 37 pass out family inet6 proto ipv6-icmp icmp-type neighsol all 38 pass family inet6 proto ipv6-icmp icmp-type neighadv all
|
| /src/external/mpl/bind/dist/bin/tests/system/rpz/testlib/ |
| trpz.h | 46 struct sockaddr_in6 ipv6; member in union:socku
|
| /src/tests/ipf/regress/ |
| Makefile | 87 ipv6.1 \ 88 ipv6.2 \ 89 ipv6.3 \ 90 ipv6.4 \ 91 ipv6.5 \ 92 ipv6.6 \
|
| /src/external/ibm-public/postfix/dist/src/util/ |
| host_port.c | 111 #define IPV6_COL "IPv6:" /* RFC 2821 */ 121 int ipv6 = 0; local 125 * [ipv6:ipv6addr]:port, [ipv6:ipv6addr]:, [ipv6:ipv6addr]. 129 if ((ipv6 = HAS_IPV6_COL(cp)) != 0) 136 if (ipv6 && !valid_ipv6_hostaddr(*host, DONT_GRIPE)) 137 return ("malformed IPv6 address");
|
| /src/tests/net/if_wg/ |
| t_basic.sh | 226 atf_set "descr" "tests to create/destroy peers (IPv6)" 248 local ipv6=inet6 278 local ipv6=inet6 308 local ipv6=inet6 511 add_badudp_test ipv4 ipv6 512 add_badudp_test ipv6 ipv4 513 add_badudp_test ipv6 ipv6 516 add_basic_test ipv4 ipv6 517 add_basic_test ipv6 ipv [all...] |
| t_tunnel.sh | 163 _proto=ipv6 300 local ipv6=inet6 329 add_tunnel_test ipv4 ipv6 330 add_tunnel_test ipv6 ipv4 331 add_tunnel_test ipv6 ipv6
|
| /src/lib/libc/inet/ |
| inet_cidr_pton.c | 53 int *bits, int ipv6); 56 static int getbits(const char *, int ipv6); 91 inet_cidr_pton_ipv4(const char *src, u_char *dst, int *pbits, int ipv6) { 120 bits = getbits(src, ipv6); 129 bits = ipv6 ? 128 : 32; 139 if (((bits - (ipv6 ? 96 : 0)) / 8) > (dst - odst)) 262 getbits(const char *src, int ipv6) { 276 if (bits > (ipv6 ? 128 : 32)) /*%< range error */
|
| /src/external/bsd/libbind/dist/inet/ |
| inet_cidr_pton.c | 48 int *bits, int ipv6)); 52 static int getbits(const char *, int ipv6); 87 inet_cidr_pton_ipv4(const char *src, u_char *dst, int *pbits, int ipv6) { 115 bits = getbits(src, ipv6); 124 bits = ipv6 ? 128 : 32; 134 if (((bits - (ipv6 ? 96 : 0)) / 8) > (dst - odst)) 257 getbits(const char *src, int ipv6) { 272 if (bits > (ipv6 ? 128 : 32)) /*%< range error */
|
| /src/external/mpl/bind/dist/bin/tests/system/dyndb/ns1/ |
| named.conf.j2 | 40 dyndb sample2 "../driver/.libs/sample.so" { ipv6.example.nil. 8.b.d.0.1.0.0.2.ip6.arpa. };
|
| /src/external/bsd/wpa/dist/src/radius/ |
| radius_server.h | 34 * first item on the line is the IPv4 or IPv6 address of the client 57 * ipv6 - Whether to enable IPv6 support in the RADIUS server 59 int ipv6; member in struct:radius_server_conf
|
| /src/external/mpl/bind/dist/bin/tests/system/checkconf/ |
| bad-rate-limit-ipv6-prefix-length.conf | 16 ipv6-prefix-length 65; // max 64
|
| /src/external/mpl/bind/dist/bin/tests/system/rrl/ns3/ |
| named.conf.j2 | 36 ipv6-prefix-length 64;
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| ifconfig.sh.in | 20 # IPv6: fd92:7065:b8e:ffff::{1..11} ULA 247 0) ipv6="ff" ;; 248 1) ipv6="99" ;; 249 2) ipv6="00" ;; 250 *) ipv6="" ;; 258 aaaa=fd92:7065:b8e:${ipv6}ff::$ns
|
| /src/crypto/external/apache2/openssl/dist/demos/guide/ |
| quic-client-block.c | 132 int ipv6 = 0; local 144 ipv6 = 1; 185 bio = create_socket_bio(hostname, port, ipv6 ? AF_INET6 : AF_INET, &peer_addr);
|
| tls-client-block.c | 113 int ipv6 = 0; local 125 ipv6 = 1; 175 bio = create_socket_bio(hostname, port, ipv6 ? AF_INET6 : AF_INET);
|
| tls-client-non-block.c | 191 int ipv6 = 0; local 203 ipv6 = 1; 254 bio = create_socket_bio(hostname, port, ipv6 ? AF_INET6 : AF_INET);
|
| /src/tests/net/ipsec/ |
| t_ipsec_tcp.sh | 185 test_tcp ipv6 $ip_local ipv6 $ip_peer 232 test_tcp ipv4 $ip_local ipv6 $ip_peer 287 add_test_tcp ipv6 esp $algo 292 add_test_tcp ipv6 ah $algo 297 add_test_tcp ipv6 none
|
| /src/share/examples/npf/ |
| host-npf.conf | 52 # Allow IPv6 ICMP 53 pass family inet6 proto ipv6-icmp all
|