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

  /src/external/mpl/bind/dist/bin/tests/system/rpz/testlib/
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)
  /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
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
ipf_y.y 112 %type <ip4> ipv4 ipv4_16 ipv4_24
1112 ipmask: ipv4 { $$ = count4bits($1.s_addr); }
1152 ipv4 { memset(&($$), 0, sizeof($$));
1733 ipv4: ipv4_24 '.' 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)
  /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-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)
  /src/external/bsd/ipf/dist/iplang/
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...]
  /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
  /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);
  /src/sys/dev/pci/
if_vmxreg.h 163 uint32_t ipv4:1; member in struct:vmxnet3_rxcompdesc
  /src/external/mpl/bind/dist/bin/dig/
dig.c 139 " -4 (use IPv4 query transport "
1195 struct in_addr ipv4 = { 0 }; local
1205 ret = inet_pton(AF_INET, buf, &ipv4);
1207 isc_sockaddr_fromin(addr, &ipv4, addr_port);
2647 fatal("can't find IPv4 networking");
  /src/external/mpl/bind/dist/lib/dns/include/dns/
rpz.h 123 dns_rpz_trigger_counter_t ipv4; member in struct:dns_rpz_triggers
189 dns_rpz_zbits_t ipv4; member in struct:dns_rpz_have
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
rpz.h 122 dns_rpz_trigger_counter_t ipv4; member in struct:dns_rpz_triggers
188 dns_rpz_zbits_t ipv4; member in struct:dns_rpz_have
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
dnssd-proxy.c 1552 FAULT("skipping address type other than IPv4/IPv6 - type: %u", addr->sa.sa_family);
1656 INFO("Non IPv4/IPv6 address added for the interface - sa_family: %u", address->sa.sa_family);
1704 // Update the "reverse mapping from address to browsing domain" for each eligible served domain under IPv6 or IPv4
1713 INFO("Skipping non IPv6/IPv4 address - addr:" PRI_S_SRP, buf);
1724 served_domain_t *ipv6, *ipv4; local
1726 // When dnssd-proxy is combined with srp-mdns-proxy, IPv4 and IPv6 reverse look up domain is set from the begining.
1727 ipv4 = find_served_domain(IPV4_REVERSE_LOOKUP_DOMAIN);
1730 ipv4 = new_served_domain(NULL, IPV4_REVERSE_LOOKUP_DOMAIN);
1733 require_action_quiet(ipv4 != NULL && ipv6 != NULL, exit, ERROR("cannot find/create new served domain"));
1751 dnssd_hardwired_add_or_remove_ptr_record(ipv4, &ifaddr->addr, &ifaddr->mask, true)
5791 served_domain_t *ipv4 = NULL; local
    [all...]
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 495 // For IPv4: "123.123.123.123.in-addr.arpa." 30 bytes including terminating NUL
991 mDNSv4Addr ipv4; // For 'A' record member in union:__anon6079
1005 mDNSv4Addr ipv4; // For 'A' record member in union:__anon6080
1116 // PCP Support for IPv4 mappings
1326 mDNSBool usableA; // True if A query results are usable over the interface, i.e., interface has IPv4.
1556 // the "local" pseudo-TLD (and within the IPv4 and IPv6 link-local reverse mapping domains) are automatically treated
1689 AuthRecord arv4; // registered IPv4 address record
2201 mDNSAddr ip; // The IPv4 or IPv6 address to advertise
2209 mDNSu8 IgnoreIPv4LL; // Set if IPv4 Link-Local addresses have to be ignored.
2485 mDNSAddr AdvertisedV4; // IPv4 address pointed to by hostnam
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
zone.c 1142 bool ipv4; member in struct:stub_glue_request
6208 "IPv4 disabled and no IPv6 %s", what);
6213 "IPv6 disabled and no IPv4 %s", what);
12687 * The raw IPv4 address should also exist. Don't send to the
12694 "notify: ignoring IPv6 mapped IPV4 address: %s",
13440 sgr->ipv4 ? dns_rdatatype_a
13455 sgr->ipv4 ? "A" : "AAAA", primary, source);
13462 sgr->ipv4 ? dns_rdatatype_a
13473 namebuf, sgr->ipv4 ? "A" : "AAAA",
13527 stub_request_nameserver_address(struct stub_cb_args *args, bool ipv4,
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
zone.c 1085 bool ipv4; member in struct:stub_glue_request
12619 * The raw IPv4 address should also exist. Don't send to the
12627 "notify: ignoring IPv6 mapped IPV4 address: %s",
13296 request->ipv4 ? dns_rdatatype_a
13311 request->ipv4 ? "A" : "AAAA", master, source);
13318 request->ipv4 ? dns_rdatatype_a
13330 namebuf, request->ipv4 ? "A" : "AAAA",
13384 stub_request_nameserver_address(struct stub_cb_args *args, bool ipv4,
13396 request->ipv4 = ipv4;
    [all...]

Completed in 78 milliseconds