/third_party/node/deps/cares/src/lib/ |
D | ares_options.c | 32 struct ares_addr_node **servers) in ares_get_servers() argument 63 srvr_curr->family = channel->servers[i].addr.family; in ares_get_servers() 65 memcpy(&srvr_curr->addrV4, &channel->servers[i].addr.addrV4, in ares_get_servers() 68 memcpy(&srvr_curr->addrV6, &channel->servers[i].addr.addrV6, in ares_get_servers() 81 *servers = srvr_head; in ares_get_servers() 87 struct ares_addr_port_node **servers) in ares_get_servers_ports() argument 118 srvr_curr->family = channel->servers[i].addr.family; in ares_get_servers_ports() 119 srvr_curr->udp_port = ntohs((unsigned short)channel->servers[i].addr.udp_port); in ares_get_servers_ports() 120 srvr_curr->tcp_port = ntohs((unsigned short)channel->servers[i].addr.tcp_port); in ares_get_servers_ports() 122 memcpy(&srvr_curr->addrV4, &channel->servers[i].addr.addrV4, in ares_get_servers_ports() [all …]
|
D | ares_init.c | 69 static int config_nameserver(struct server_state **servers, int *nservers, 142 channel->servers = NULL; in ares_init_options() 217 if (channel->servers) in ares_init_options() 218 ares_free(channel->servers); in ares_init_options() 246 struct ares_addr_port_node *servers; in ares_dup() local 287 if ((src->servers[i].addr.family != AF_INET) || in ares_dup() 288 (src->servers[i].addr.udp_port != 0) || in ares_dup() 289 (src->servers[i].addr.tcp_port != 0)) { in ares_dup() 295 rc = ares_get_servers_ports(src, &servers); in ares_dup() 301 rc = ares_set_servers_ports(*dest, servers); in ares_dup() [all …]
|
D | ares_destroy.c | 29 if(options->servers) in ares_destroy_options() 30 ares_free(options->servers); in ares_destroy_options() 101 if (channel->servers) in ares__destroy_servers_state() 105 server = &channel->servers[i]; in ares__destroy_servers_state() 109 ares_free(channel->servers); in ares__destroy_servers_state() 110 channel->servers = NULL; in ares__destroy_servers_state()
|
D | ares_cancel.c | 57 if (channel->servers) in ares_cancel() 60 ares__close_sockets(channel, &channel->servers[i]); in ares_cancel()
|
/third_party/node/test/parallel/ |
D | test-tls-client-verify.js | 35 servers: [ property 44 servers: [ property 53 servers: [ property 67 function testServers(index, servers, clientOptions, cb) { argument 68 const serverOptions = servers[index]; 112 testServers(index + 1, servers, clientOptions, cb); 131 testServers(0, tcase.servers, clientOptions, common.mustCall(function() {
|
D | test-cluster-disconnect.js | 37 const servers = 2; constant 60 for (let i = 0; i < servers; i++) { 64 if (done === servers) { 81 if (online === workers * servers) { 84 }, servers));
|
D | test-dns.js | 36 const servers = []; variable 38 servers[0] = '127.0.0.1'; 39 servers[2] = '0.0.0.0'; 40 dns.setServers(servers); 46 const servers = ['127.0.0.1', '192.168.1.1']; variable 48 servers[3] = '127.1.0.1'; 49 servers[4] = '127.1.0.1'; 50 servers[5] = '127.1.1.1'; 52 Object.defineProperty(servers, 2, { 55 servers.length = 3; [all …]
|
D | test-dns-multi-channel.js | 8 const servers = [ variable 19 let waiting = servers.length; 20 for (const { socket, reply } of servers) { 40 const resolvers = servers.map((server) => ({
|
D | test-tls-ticket.js | 96 const servers = naturalServers.concat(naturalServers).concat(naturalServers); constant 100 servers.shift().emit('connection', c); 118 let left = servers.length;
|
/third_party/grpc/test/cpp/qps/ |
D | driver.cc | 301 static void FinishServers(const std::vector<ServerData>& servers, in FinishServers() argument 304 for (size_t i = 0, i_end = servers.size(); i < i_end; i++) { in FinishServers() 305 auto server = &servers[i]; in FinishServers() 317 static void ReceiveFinalStatusFromServer(const std::vector<ServerData>& servers, in ReceiveFinalStatusFromServer() argument 321 for (size_t i = 0, i_end = servers.size(); i < i_end; i++) { in ReceiveFinalStatusFromServer() 322 auto server = &servers[i]; in ReceiveFinalStatusFromServer() 337 static void ShutdownServers(const std::vector<ServerData>& servers, in ShutdownServers() argument 340 for (size_t i = 0, i_end = servers.size(); i < i_end; i++) { in ShutdownServers() 341 auto server = &servers[i]; in ShutdownServers() 430 std::vector<ServerData> servers(num_servers); in RunScenario() local [all …]
|
/third_party/libuv/test/ |
D | benchmark-multi-accept.c | 205 struct server_ctx* servers) { in send_listen_handles() argument 231 uv_sem_post(&servers[i].semaphore); in send_listen_handles() 238 uv_sem_wait(&servers[i].semaphore); in send_listen_handles() 363 struct server_ctx* servers; in test_tcp() local 373 servers = calloc(num_servers, sizeof(servers[0])); in test_tcp() 375 ASSERT_NOT_NULL(servers); in test_tcp() 383 struct server_ctx* ctx = servers + i; in test_tcp() 388 send_listen_handles(UV_TCP, num_servers, servers); in test_tcp() 411 struct server_ctx* ctx = servers + i; in test_tcp() 423 struct server_ctx* ctx = servers + i; in test_tcp() [all …]
|
/third_party/node/lib/internal/dns/ |
D | utils.js | 74 setServers(servers) { argument 75 if (!ArrayIsArray(servers)) { 76 throw new ERR_INVALID_ARG_TYPE('servers', 'Array', servers); 85 ArrayPrototypeForEach(servers, (serv, index) => { 129 throw new ERR_DNS_SET_SERVERS_FAILED(err, servers);
|
/third_party/grpc/test/cpp/naming/utils/ |
D | dns_resolver.py | 55 servers = [(args.server_host, args.server_port)] 56 resolver = client.Resolver(servers=servers)
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/ |
D | load_balancer_api.cc | 118 const grpc_lb_v1_Server* const* servers = in ParseServerList() local 125 upb_strview address = grpc_lb_v1_Server_ip_address(servers[i]); in ParseServerList() 132 cur.port = grpc_lb_v1_Server_port(servers[i]); in ParseServerList() 133 upb_strview token = grpc_lb_v1_Server_load_balance_token(servers[i]); in ParseServerList() 143 cur.drop = grpc_lb_v1_Server_drop(servers[i]); in ParseServerList()
|
/third_party/curl/docs/ |
D | SSL-PROBLEMS.md | 41 Some broken servers fail to support the protocol negotiation properly that 42 SSL servers are supposed to handle. This may cause the connection to fail 54 Clients give servers a list of ciphers to select from. If the list doesn't 67 Schannel in Windows XP is not able to connect to servers that no longer 78 to mitigate this attack, it turned out that some broken servers out there in 81 To make such broken servers work, the --ssl-allow-beast option was 84 servers.
|
/third_party/grpc/src/core/lib/channel/ |
D | channelz_registry.cc | 125 absl::InlinedVector<RefCountedPtr<BaseNode>, 10> servers; in InternalGetServers() local 141 if (servers.size() == kPaginationLimit) { in InternalGetServers() 145 servers.emplace_back(std::move(node_ref)); in InternalGetServers() 150 if (!servers.empty()) { in InternalGetServers() 153 for (size_t i = 0; i < servers.size(); ++i) { in InternalGetServers() 154 array.emplace_back(servers[i]->RenderJson()); in InternalGetServers()
|
/third_party/grpc/doc/ |
D | load-balancing.md | 15 all servers. 36 Random, etc) used to select servers from a list. In this model, a list of 37 servers would be either statically configured in the client, provided by the 50 list of servers to the client. 63 servers to collect load and health information. 73 servers to which the client should send requests. The balancer will update 77 with the backend servers to collect load and health information. 93 with an up-to-date list of servers. 135 2. The gRPC servers to which the load balancer is directing the client 144 to the servers in the order in which they were returned by the load
|
/third_party/node/deps/cares/include/ |
D | ares.h | 269 struct in_addr *servers; member 730 struct ares_addr_node *servers); 732 struct ares_addr_port_node *servers); 736 const char* servers); 738 const char* servers); 741 struct ares_addr_node **servers); 743 struct ares_addr_port_node **servers);
|
/third_party/curl/lib/ |
D | hostsyn.c | 63 char *servers) in Curl_set_dns_servers() argument 66 (void)servers; in Curl_set_dns_servers()
|
/third_party/curl/tests/server/ |
D | CMakeLists.txt | 44 # Test servers simply are standalone programs that do not use libcurl 45 # library. For convenience and to ease portability of these servers, 47 # to build the servers. In order to achieve proper linkage of these 48 # files on Win32 targets it is necessary to build the test servers
|
/third_party/curl/docs/cmdline-opts/ |
D | dns-servers.d | 1 Long: dns-servers 8 Set the list of DNS servers to be used instead of the system default.
|
/third_party/node/deps/cares/src/tools/ |
D | adig.c | 168 struct ares_addr_node *srvr, *servers = NULL; in main() local 184 options.servers = NULL; in main() 220 destroy_addr_list(servers); in main() 223 append_addr_list(&servers, srvr); in main() 234 destroy_addr_list(servers); in main() 252 destroy_addr_list(servers); in main() 329 if(servers) in main() 331 status = ares_set_servers(channel, servers); in main() 332 destroy_addr_list(servers); in main()
|
/third_party/grpc/src/proto/grpc/lb/v1/ |
D | load_balancer.proto | 32 // Bidirectional rpc to get a list of servers. 94 // Contains the list of servers selected by the load balancer. The client 95 // should send requests to these servers in the specified order. 120 // Contains a list of servers selected by the load balancer. The list will 122 // across more servers. The client should consume the server list in order 124 repeated Server servers = 1; field
|
/third_party/openssl/doc/man3/ |
D | SSL_CTX_set_options.pod | 185 servers. See the B<SECURE RENEGOTIATION> section for more details. 189 Allow legacy insecure renegotiation between OpenSSL and unpatched servers 195 Normally clients and servers will transparently attempt to negotiate the 199 propose, and servers will not accept the extension. 312 and renegotiation between patched OpenSSL clients and unpatched servers 314 servers will fail. 318 connect to unpatched servers (i.e. all of them initially) and this is clearly 323 As more servers become patched the option B<SSL_OP_LEGACY_SERVER_CONNECT> will 327 servers should always B<set> B<SSL_OP_LEGACY_SERVER_CONNECT> 330 unpatched servers (and thus avoid any security issues) should always B<clear> [all …]
|
/third_party/pulseaudio/src/pulsecore/ |
D | protocol-http.c | 106 pa_strlist *servers; member 789 pa_strlist_free(p->servers); in pa_http_protocol_unref() 801 p->servers = pa_strlist_prepend(p->servers, name); in pa_http_protocol_add_server_string() 809 p->servers = pa_strlist_remove(p->servers, name); in pa_http_protocol_remove_server_string() 816 return p->servers; in pa_http_protocol_servers()
|