/aosp_15_r20/external/grpc-grpc/test/cpp/naming/ |
H A D | resolver_test_record_groups.yaml | 1 resolver_tests_common_zone_name: resolver-tests-version-4.grpctestingexp. 3 # Tests for which we enable SRV queries 4 - expected_addrs: 5 - {address: '5.5.5.5:443', is_balancer: false} 13 record_to_resolve: no-srv-ipv4-single-target 15 no-srv-ipv4-single-target: 16 - {TTL: '2100', data: 5.5.5.5, type: A} 17 - expected_addrs: 18 - {address: '1.2.3.4:1234', is_balancer: true} 26 record_to_resolve: srv-ipv4-single-target [all …]
|
H A D | resolver_component_tests_runner.py | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 # This file is auto-generated 27 argp = argparse.ArgumentParser(description='Run c-ares resolver tests') 28 argp.add_argument('--test_bin_path', default=None, type=str, 30 argp.add_argument('--dns_server_bin_path', default=None, type=str, 32 argp.add_argument('--records_config_path', default=None, type=str, 35 argp.add_argument('--dns_server_port', default=None, type=int, 37 argp.add_argument('--dns_resolver_bin_path', default=None, type=str, 39 argp.add_argument('--tcp_connect_bin_path', default=None, type=str, 41 argp.add_argument('--extra_args', default='', type=str, [all …]
|
/aosp_15_r20/external/openthread/src/cli/ |
H A D | README.md | 24 - [ba](#ba) 25 - [bbr](#bbr) 26 - [br](README_BR.md) 27 - [bufferinfo](#bufferinfo) 28 - [ccathreshold](#ccathreshold) 29 - [channel](#channel) 30 - [child](#child-list) 31 - [childip](#childip) 32 - [childmax](#childmax) 33 - [childsupervision](#childsupervision-interval) [all …]
|
/aosp_15_r20/external/mdnsresponder/mDNSCore/ |
H A D | mDNSEmbeddedAPI.h | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2003 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 24 runs in a single address space and memory is extremely constrained. 25 All the APIs here are malloc-free, which means that the caller is 33 memory requirements, with absolutely no uncertainty or run-time variation, 36 For applications running on general-purpose desktop operating systems 40 requests to a single "mdnsd" daemon running in the background. 46 using malloc(), and then calls through to the low-level malloc-free 48 you're running on a small embedded system with a single address space, [all …]
|
H A D | mDNS.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 18 * from outside the mDNS project -- all the types it expects to find are defined right here. 22 * making *any* assumptions about availability of so-called "standard" C functions, 34 * thinking that variables x and y are both of type "char*" -- and anyone who doesn't 40 #include "uDNS.h" // Defines entry points into unicast-specific routines 84 #pragma mark - Program Constants 98 "b._dns-sd._udp.", // Browse 99 "db._dns-sd._udp.", // Default Browse [all …]
|
H A D | uDNS.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2002-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 18 * Elimate all mDNSPlatformMemAllocate/mDNSPlatformMemFree from this code -- the core code 19 * is supposed to be malloc-free so that it runs in constant memory determined at compile-time. 20 …* Any dynamic run-time requirements should be handled by the platform layer below or client layer … 39 // In each of these domains we search for our special pointer records (lb._dns-sd._udp.<domain>, et… 57 #pragma mark - General Utility Functions 63 rr->LastAPTime = m->timenow; in SetRecordRetry() 65 if (rr->expire && rr->refreshCount < MAX_UPDATE_REFRESH_COUNT) in SetRecordRetry() [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/net/ |
D | lookup_test.go | 2 // Use of this source code is governed by a BSD-style 42 // mDNS, and may use platform-dependent DNS stub resolver if possible. 44 // encodings, UTF-8 encoded net name, domain name, FQDN or absolute 50 cname, target string 61 // non-standard back door 97 i-- 108 for _, srv := range srvs { 109 if !hasSuffixFold(srv.Target, tt.target) { 110 t.Errorf("got %v; want a record containing %s", srv, tt.target) 146 i-- [all …]
|
D | dnsclient_unix_test.go | 2 // Use of this source code is governed by a BSD-style 158 …{mustQuestion("1.0.168.192.in-addr.arpa.", dnsmessage.TypePTR, dnsmessage.ClassINET), dnsmessage.R… 165 // answers at DNS query-response interaction level. 306 dir, err := os.MkdirTemp("", "go-resolvconftest") 443 a, aaaa bool // whether response contains A, AAAA-record 456 // no records, non-existent domain 500 "ipv6.google.com.", 509 "ipv6.google.com", 519 "ipv6.google.com", 594 case "ipv6.google.com.": [all …]
|
/aosp_15_r20/external/openthread/tests/scripts/thread-cert/ |
H A D | node.py | 82 … self._socat_proc = subprocess.Popen(['socat', '-d', '-d', 'pty,raw,echo=0', 'pty,raw,echo=0'], 103 # We expect ot-rcp not to quit in 1 second. 106 raise Exception(f"ot-rcp {nodeid} exited unexpectedly!") 108 def _get_ot_rcp_path(self) -> str: 110 path = '%s/examples/apps/ncp/ot-rcp' % srcdir 111 logging.info("ot-rcp path: %s", path) 116 subprocess.check_call(f"docker rm -f {self._docker_name} || true", shell=True) 118 dns = ['--dns=127.0.0.1'] if INFRA_DNS64 == 1 else ['--dns=8.8.8.8'] 119 nat64_prefix = ['--nat64-prefix', '2001:db8:1:ffff::/96'] if INFRA_DNS64 == 1 else [] 123 '--rm', [all …]
|
/aosp_15_r20/external/mdnsresponder/mDNSShared/ |
H A D | dns_sd.h | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2003-2004, Apple Computer, Inc. All rights reserved. 36 * of zero-configuration networking (ZEROCONF). 42 * all the information -- such as name, IP address, and port -- 46 * AppleTalk. Bonjour allows applications to provide user-friendly printer 61 * For example, Mac OS X 10.4.9 has mDNSResponder-108.4, which would be represented as 62 * version 1080400. This allows C code to do simple greater-than and less-than comparisons: 63 …* e.g. an application that requires the DNSServiceGetProperty() call (new in mDNSResponder-126) ca… 69 * The version defined in this header file symbol allows for compile-time 72 * in those earlier versions. Similar checks may also be performed at run-time: [all …]
|
H A D | uds_daemon.c | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2003-2006 Apple Computer, Inc. All rights reserved. 9 * http://www.apache.org/licenses/LICENSE-2.0 42 // Normally we append search domains only for queries with a single label that are not 47 // Apple-specific functionality, not required for other platforms 72 // User IDs 0-500 are system-wide processes, not actual users in the usual sense 78 #pragma mark - 79 #pragma mark - Types and Data Structures 103 …AuthRecord *rr; // Pointer to variable-sized AuthRecord (Why a pointer? Why not just embed it h… 106 // A single registered service: ServiceRecordSet + bookkeeping [all …]
|
/aosp_15_r20/external/libcups/vcnet/ |
H A D | dns_sd.h | 1 /* -*- Mode: C; tab-width: 4 -*- 3 * Copyright (c) 2003-2004, Apple Computer, Inc. All rights reserved. 36 * of zero-configuration networking (ZEROCONF). 42 * all the information -- such as name, IP address, and port -- 46 * AppleTalk. Bonjour allows applications to provide user-friendly printer 61 * For example, Mac OS X 10.4.9 has mDNSResponder-108.4, which would be represented as 62 * version 1080400. This allows C code to do simple greater-than and less-than comparisons: 63 …* e.g. an application that requires the DNSServiceGetProperty() call (new in mDNSResponder-126) ca… 69 * The version defined in this header file symbol allows for compile-time 72 * in those earlier versions. Similar checks may also be performed at run-time: [all …]
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | asyncio-eventloop.rst | 4 .. _asyncio-event-loop: 13 ------------------------------------ 21 Application developers should typically use the high-level asyncio functions, 24 of lower-level code, libraries, and frameworks, who need finer control over 29 The following low-level functions can be used to get, set, or create 58 As noted above, consider using the higher-level :func:`asyncio.run` function, 63 In Python versions 3.10.0--3.10.8 and 3.11.0 this function 82 :ref:`setting a custom event loop policy <asyncio-policies>`. 106 .. _asyncio-event-loop-methods: 111 Event loops have **low-level** APIs for the following: [all …]
|
/aosp_15_r20/external/dnsmasq/ |
H A D | CHANGELOG.archive | 1 release 0.4 - initial public release 3 release 0.5 - added caching, removed compiler warning on linux PPC 5 release 0.6 - TCP handling: close socket and return to connect state if we 9 Added a patch from Cris Bailiff <c.bailiff@e-secure.com.au> 28 Fix bad bug resulting from not initialising value-result 29 address-length parameter to recvfrom() and accept() - it 39 (3) Time-to-live data from upstream server is read and 42 the -h option is given). 44 a file other than /etc/resolv.conf (-r option) this allows 47 give dnsmasq the option -r /etc/resolv.dnsmasq) [all …]
|
/aosp_15_r20/external/cronet/net/dns/ |
H A D | host_resolver_manager_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 151 top_level_result_error_ = request_->Start(base::BindOnce( in ResolveHostResponseHelper() 158 top_level_result_error_ = request_->Start( in ResolveHostResponseHelper() 177 return request_->GetResolveErrorInfo().error; in result_error() 296 --num_attempts_waiting_; in Resolve() 301 // Since any negative number is considered a network error, with -1 having in Resolve() 304 // resolves the host, then this method returns -4. in Resolve() 306 return -1 - resolved_attempt_number_; in Resolve() 328 // TestHostResolverManager's sole purpose is to mock the IPv6 reachability test. 329 // By default, this pretends that IPv6 is globally reachable. [all …]
|
/aosp_15_r20/external/scapy/scapy/layers/ |
H A D | inet6.py | 4 ## inet6.py --- IPv6 support for Scapy ## 5 ## see http://natisbad.org/IPv6/ ## 23 IPv6 (Internet Protocol v6). 40 raise socket.error("can't use AF_INET6, IPv6 is disabled") 95 …ighbor Solicitation message to get the MAC address of the neighbor with specified IPv6 address addr 107 p = Ether(dst=dm)/IPv6(dst=d, src=src, hlim=255) 117 """Returns the MAC address corresponding to an IPv6 address 160 ### IPv6 addresses manipulation routines ### 166 name = "ipv6" 167 ip_regex = re.compile(r"^([a-fA-F0-9:]+)(/[1]?[0-3]?[0-9])?$") [all …]
|
/aosp_15_r20/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | NsdManagerTest.kt | 8 * http://www.apache.org/licenses/LICENSE-2.0 in <lambda>() 152 // mdnsresponder the usual hostname is "Android", and on conflict "Android-2", "Android-3", ... are in <lambda>() 290 // Wait until the link-local address can be used. Address flags are not available without in <lambda>() 294 // a non-empty address list. Verify that interface returns a non-empty list, before in <lambda>() 356 val testByteArray = byteArrayOf(-128, 127, 2, 1, 0, 1, 2) in <lambda>() 711 val serviceNames = "^Nsd.Test|Non-#AsCiI\\Characters&\\ufffe テスト 測試" in <lambda>() 718 // Register the service name which contains non-standard characters. in <lambda>() 732 // non-standard characters. in <lambda>() 813 assertEquals(0x21 /* SRV */, srvRecord.nsType) in <lambda>() 836 // enabled with target SDK U+. in <lambda>() [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/route53/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2013-04-01", 7 "protocol":"rest-xml", 12 "uid":"route53-2013-04-01" 19 "requestUri":"/2013-04-01/keysigningkey/{HostedZoneId}/{Name}/activate" 31 …"documentation":"<p>Activates a key-signing key (KSK) so that it can be used for signing by DNSSEC… 37 "requestUri":"/2013-04-01/hostedzone/{Id}/associatevpc" 42 "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"} 55 …- Amazon Web Services Regions</p> </li> <li> <p> <code>aws-cn</code> - China Regions</p> </li> <li… 61 "requestUri":"/2013-04-01/cidrcollection/{CidrCollectionId}" 66 "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"} [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/securityhub/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2018-10-26", 7 "protocol":"rest-json", 12 "uid":"securityhub-2018-10-26" 83 … href=\"https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html\">Secu… 100 … href=\"https://docs.aws.amazon.com/securityhub/latest/userguide/securityhub-standards.html\">Secu… 136 …target accounts, organizational units, or the root. Only the Security Hub delegated administrator … 168 … and standards, identifies whether each control is currently enabled or disabled in a standard. </… 184 …-custom-providers.html#securityhub-custom-providers-bfi-reqs\">default product ARN</a> or are a pa… 217 …azon.com/securityhub/latest/userguide/finding-update-batchupdatefindings.html#batchupdatefindings-… 251 …s a custom action target in Security Hub.</p> <p>You can use custom actions on findings and insigh… [all …]
|
/aosp_15_r20/external/toybox/android/mac/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… 47 #define HELP_getenforce "usage: getenforce\n\nShows whether SELinux is disabled, enforcing, or perm… [all …]
|
/aosp_15_r20/external/toybox/android/linux/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… 47 #define HELP_getenforce "usage: getenforce\n\nShows whether SELinux is disabled, enforcing, or perm… [all …]
|
/aosp_15_r20/external/toybox/android/device/generated/ |
H A D | help.h | 1 …-libc on a nommu system, you'll need to say \"y\" here\nunless you used the patch in the mcm-build… 9 … even when it has a built-in version of that command. This requires\n toybox symlinks to be … 13 #define HELP_toybox_zhelp "Compress help with gzip -9, deflating when displayed. This makes the\nbi… 15 …t --help argument in all commands, even ones with a NULL\noptstring. (Use TOYFLAG_NOHELP to disabl… 23 #define HELP_toybox_libcrypto "Use faster hash functions out of external -lcrypto library." 27 #define HELP_toybox_selinux "Include SELinux options in commands such as ls, and add\nSELinux-speci… 33 …--long | --help | --version | [COMMAND] [ARGUMENTS...]]\n\nWith no arguments, \"toybox\" shows ava… 41 …-D] [-F] [-R] [-n] [-v] FILE...\n\nRestores the default security contexts for the given files.\n\n… 43 …-p PRI] [-t TAG] [MESSAGE...]\n\nLogs message (or stdin) to logcat.\n\n-p Use the given priority i… 47 #define HELP_getenforce "usage: getenforce\n\nShows whether SELinux is disabled, enforcing, or perm… [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/ |
D | h2_bundle.go | 4 // $ bundle -o=h2_bundle.go -prefix=http2 -tags=!nethttpomithttp2 golang.org/x/net/http2 8 // This package is low-level and intended to be used directly by very 19 // Use of this source code is governed by a BSD-style 61 // contains helper functions which may use Unicode-aware functions which would 65 // are equal, ASCII-case-insensitively. 81 return b + ('a' - 'A') 87 // https://tools.ietf.org/html/rfc20#section-4.2. 107 // https://www.iana.org/assignments/tls-parameters/tls-parameters.txt 138 // Reserved uint16 = 0x001C-1D 180 // Reserved uint16 = 0x0047-4F [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/ecs/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2014-11-13", 13 "uid":"ecs-2014-11-13" 47 …-linked role for your account. This is so that it can manage required resources in other Amazon We… 68 …-day period are considered current customers and will be able to continue using the service. </p> … 91 …-types.html\">Amazon ECS deployment types</a> in the <i>Amazon Elastic Container Service Developer… 210 …ref=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html\">Amazon E… 241 …e an <code>INACTIVE</code> task definition. However, there may be up to a 10-minute window followi… 338 …ref=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-types.html\">Amazon E… 386 …ee <a href=\"https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-exec.html\">Using Ama… 434 …target type and cluster. When you specify a target type and cluster, <code>ListAttributes</code> r… [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/lightsail/src/main/resources/codegen-resources/ |
H A D | service-2.json | 4 "apiVersion":"2016-11-28", 12 "uid":"lightsail-2016-11-28" 50 …-east-1</code> Amazon Web Services Region can be attached to Lightsail distributions. Lightsail di… 69 …-based access control via resource tags applied to the resource identified by <code>disk name</cod… 88 …-based access control via resource tags applied to the resource identified by <code>load balancer … 107 …-attached certificate, and it will replace the existing one and become the attached certificate.</… 145 …-based access control via resource tags applied to the resource identified by <code>instanceName</… 164 …target snapshot name</code> parameters.</p> <p>When copying an <i>automatic snapshot</i>, be sure … 180 … href=\"https://lightsail.aws.amazon.com/ls/docs/en_us/articles/buckets-in-amazon-lightsail\">Buck… 197 …-11-28/api-reference/API_GetBucketAccessKeys.html\">GetBucketAccessKeys</a> action to get a list o… [all …]
|