HomeSort by: relevance | last modified time | path
    Searched defs:ipv4 (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/external/mpl/bind/dist/bin/tests/system/rpz/testlib/
trpz.h 45 struct sockaddr_in ipv4; member in union:socku
trpz.h 45 struct sockaddr_in ipv4; member in union:socku
  /src/lib/libc/inet/
inet_net_pton.c 53 * convert IPv4 network number from presentation to network format.
59 * not an IPv4 network specification.
281 int ipv4; local
295 ipv4 = 0;
331 ipv4 = 1;
350 if (ipv4)
inet_net_pton.c 53 * convert IPv4 network number from presentation to network format.
59 * not an IPv4 network specification.
281 int ipv4; local
295 ipv4 = 0;
331 ipv4 = 1;
350 if (ipv4)
  /src/external/bsd/ipf/dist/tools/
ipmon_y.y 75 %type <addr> ipv4
161 dstip: IPM_DSTIP '=' ipv4 '/' YY_NUMBER { $$ = new_opt(IPM_DSTIP);
219 srcip: IPM_SRCIP '=' ipv4 '/' YY_NUMBER { $$ = new_opt(IPM_SRCIP);
243 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ipmon_y.y 75 %type <addr> ipv4
161 dstip: IPM_DSTIP '=' ipv4 '/' YY_NUMBER { $$ = new_opt(IPM_DSTIP);
219 srcip: IPM_SRCIP '=' ipv4 '/' YY_NUMBER { $$ = new_opt(IPM_SRCIP);
243 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ippool_y.y 95 %type <ip4> ipv4
373 ipaddr: ipv4 { $$.adf_addr.in4 = $1;
401 | ipv4 { bzero(&$$, sizeof($$));
415 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ippool_y.y 95 %type <ip4> ipv4
373 ipaddr: ipv4 { $$.adf_addr.in4 = $1;
401 | ipv4 { bzero(&$$, sizeof($$));
415 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ipnat_y.y 130 %type <ipa> hostname ipv4 ipaddr
1193 | ipv4 { $$ = $1; }
1219 ipaddr: ipv4 { $$ = $1; }
1225 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
ipnat_y.y 130 %type <ipa> hostname ipv4 ipaddr
1193 | ipv4 { $$ = $1; }
1219 ipaddr: ipv4 { $$ = $1; }
1225 ipv4: YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER '.' YY_NUMBER label
  /src/external/bsd/libbind/dist/inet/
inet_net_pton.c 50 * convert IPv4 network number from presentation to network format.
56 * not an IPv4 network specification.
276 int ipv4; local
290 ipv4 = 0;
326 ipv4 = 1;
345 if (ipv4)
inet_net_pton.c 50 * convert IPv4 network number from presentation to network format.
56 * not an IPv4 network specification.
276 int ipv4; local
290 ipv4 = 0;
326 ipv4 = 1;
345 if (ipv4)
  /src/external/bsd/nsd/dist/
xdp-dns-redirect_kern.c 95 struct iphdr *ipv4; local
107 if (!(ipv4 = parse_iphdr(&c)) || ipv4->protocol != IPPROTO_UDP)
xdp-dns-redirect_kern.c 95 struct iphdr *ipv4; local
107 if (!(ipv4 = parse_iphdr(&c)) || ipv4->protocol != IPPROTO_UDP)
xdp-server.c 132 * Check whether destination IPv4 is in allowed IPs list
134 static int dest_ip_allowed4(struct xdp_server *xdp, struct iphdr *ipv4);
180 static inline void swap_ipv4(struct iphdr *ipv4);
183 static inline void *parse_ipv4(struct iphdr *ipv4);
574 static int dest_ip_allowed4(struct xdp_server *xdp, struct iphdr *ipv4) {
582 ipv4->daddr == ((struct sockaddr_in *) &ip->addr)->sin_addr.s_addr)
663 static inline void swap_ipv4(struct iphdr *ipv4) {
665 memcpy(&tmp_ip, &ipv4->saddr, sizeof(tmp_ip));
666 memcpy(&ipv4->saddr, &ipv4->daddr, sizeof(tmp_ip))
748 struct iphdr *ipv4 = NULL; local
    [all...]
xdp-server.c 132 * Check whether destination IPv4 is in allowed IPs list
134 static int dest_ip_allowed4(struct xdp_server *xdp, struct iphdr *ipv4);
180 static inline void swap_ipv4(struct iphdr *ipv4);
183 static inline void *parse_ipv4(struct iphdr *ipv4);
574 static int dest_ip_allowed4(struct xdp_server *xdp, struct iphdr *ipv4) {
582 ipv4->daddr == ((struct sockaddr_in *) &ip->addr)->sin_addr.s_addr)
663 static inline void swap_ipv4(struct iphdr *ipv4) {
665 memcpy(&tmp_ip, &ipv4->saddr, sizeof(tmp_ip));
666 memcpy(&ipv4->saddr, &ipv4->daddr, sizeof(tmp_ip))
748 struct iphdr *ipv4 = NULL; local
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/dyndb/driver/
syncptr.c 134 dns_rdata_in_a_t ipv4; local
142 CHECK(dns_rdata_tostruct(rdata, &ipv4, inst->mctx));
143 isc_netaddr_fromin(&isc_ip, &ipv4.in_addr);
190 dns_rdata_freestruct(&ipv4);
205 * @param[in] ip_str IP address as a string (IPv4 or IPv6)
syncptr.c 134 dns_rdata_in_a_t ipv4; local
142 CHECK(dns_rdata_tostruct(rdata, &ipv4, inst->mctx));
143 isc_netaddr_fromin(&isc_ip, &ipv4.in_addr);
190 dns_rdata_freestruct(&ipv4);
205 * @param[in] ip_str IP address as a string (IPv4 or IPv6)
  /src/external/bsd/ipf/dist/iplang/
iplang_y.y 289 ipline: ipv4 '{' ipv4body '}' ';' { end_ipv4(); }
292 ipv4: IL_IPV4 { new_packet(); } label
iplang_y.y 289 ipline: ipv4 '{' ipv4body '}' ';' { end_ipv4(); }
292 ipv4: IL_IPV4 { new_packet(); } label
  /src/external/bsd/unbound/dist/dns64/
dns64.c 188 * Extract an IPv4 address embedded in the IPv6 address \a ipv6 at offset \a
195 * \param offset Index of the MSB of the IPv4 address embedded in the IPv6
201 uint32_t ipv4 = 0; local
209 ipv4 = ipv4 << 8;
210 ipv4 |= ipv6[pos];
212 return ipv4;
216 * Builds the PTR query name corresponding to an IPv4 address. For example,
220 * \param ipv4 IPv4 address represented as an unsigned 32-bit number
    [all...]
dns64.c 188 * Extract an IPv4 address embedded in the IPv6 address \a ipv6 at offset \a
195 * \param offset Index of the MSB of the IPv4 address embedded in the IPv6
201 uint32_t ipv4 = 0; local
209 ipv4 = ipv4 << 8;
210 ipv4 |= ipv6[pos];
212 return ipv4;
216 * Builds the PTR query name corresponding to an IPv4 address. For example,
220 * \param ipv4 IPv4 address represented as an unsigned 32-bit number
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_wire.h 761 unsigned char ipv4[4], ipv6[16]; member in struct:quic_preferred_addr_st
quic_wire.h 761 unsigned char ipv4[4], ipv6[16]; member in struct:quic_preferred_addr_st
  /src/external/apache2/mDNSResponder/dist/mDNSShared/
discover_resolver.c 110 DNSQuestion ipv4_question; // used to query for IPv4 address of the resolver name
914 DNSQuestion * const ipv4 = &resolver_name->ipv4_question; local
918 discover_resolver_setup_question(ipv4, resolver_name->interface_id, name, kDNSType_A, false,
925 mStatus mdns_err = mDNS_StartQuery(&mDNSStorage, ipv4);

Completed in 43 milliseconds

1 2