Searched refs:hostname_len (Results 1 - 5 of 5) sorted by relevance
/external/dnsmasq/src/ |
H A D | helper.c | 38 unsigned char clid_len, hostname_len, uclass_len, vclass_len, shost_len; member in struct:script_data 159 data.hostname_len + data.uclass_len + data.vclass_len + data.shost_len, 1)) 252 if (data.hostname_len != 0) 256 hostname[data.hostname_len - 1] = 0; 302 unsigned int hostname_len = 0, clid_len = 0, vclass_len = 0; local 318 hostname_len = strlen(hostname) + 1; 320 size = sizeof(struct script_data) + clid_len + vclass_len + uclass_len + shost_len + hostname_len; 345 buf->hostname_len = hostname_len; 391 if (hostname_len ! [all...] |
/external/curl/lib/ |
H A D | socks.c | 380 const size_t hostname_len = strlen(hostname); local 384 if(!socks5_resolve_local && hostname_len > 255) { 386 "length > 255 [actual len=%zu]\n", hostname_len); 571 socksreq[len++] = (char) hostname_len; /* address length */ 572 memcpy(&socksreq[len], hostname, hostname_len); /* address str w/o NULL */ 573 len += hostname_len;
|
H A D | cookie.c | 123 size_t hostname_len = strlen(hostname); local 125 if(hostname_len < cookie_domain_len) 128 if(!Curl_raw_equal(cooke_domain, hostname+hostname_len-cookie_domain_len)) 138 if(hostname_len == cookie_domain_len) 140 if('.' == *(hostname + hostname_len - cookie_domain_len - 1))
|
/external/curl/lib/vtls/ |
H A D | cyassl.c | 299 size_t hostname_len = strlen(conn->host.name); local 300 if((hostname_len < USHRT_MAX) && 306 (unsigned short)hostname_len) != 1)) {
|
H A D | schannel.c | 1598 int hostname_len = strlen(conn->host.name); local 1601 hostname.const_tchar_ptr + hostname_len - len + 2) != 0)
|
Completed in 154 milliseconds