Searched refs:hostname_len (Results 1 – 6 of 6) sorted by relevance
/external/dnsmasq/src/ |
D | helper.c | 38 unsigned char clid_len, hostname_len, uclass_len, vclass_len, shost_len; member 159 data.hostname_len + data.uclass_len + data.vclass_len + data.shost_len, 1)) in create_helper() 252 if (data.hostname_len != 0) in create_helper() 256 hostname[data.hostname_len - 1] = 0; in create_helper() 302 unsigned int hostname_len = 0, clid_len = 0, vclass_len = 0; in queue_script() local 318 hostname_len = strlen(hostname) + 1; in queue_script() 320 …size = sizeof(struct script_data) + clid_len + vclass_len + uclass_len + shost_len + hostname_len; in queue_script() 345 buf->hostname_len = hostname_len; in queue_script() 391 if (hostname_len != 0) in queue_script() 393 memcpy(p, hostname, hostname_len); in queue_script() [all …]
|
/external/boringssl/src/ssl/ |
D | handoff.cc | 111 size_t hostname_len = 0; in SSL_serialize_handback() local 113 hostname_len = strlen(s3->hostname.get()); in SSL_serialize_handback() 152 hostname_len) || in SSL_serialize_handback() 252 const size_t hostname_len = CBS_len(&hostname); in SSL_apply_handback() local 253 if (hostname_len == 0) { in SSL_apply_handback()
|
/external/curl/lib/ |
D | socks.c | 388 const size_t hostname_len = strlen(hostname); in Curl_SOCKS5() local 398 if(!socks5_resolve_local && hostname_len > 255) { in Curl_SOCKS5() 400 "length > 255 [actual len=%zu]\n", hostname_len); in Curl_SOCKS5() 594 socksreq[len++] = (char) hostname_len; /* address length */ in Curl_SOCKS5() 595 memcpy(&socksreq[len], hostname, hostname_len); /* address str w/o NULL */ in Curl_SOCKS5() 596 len += hostname_len; in Curl_SOCKS5()
|
D | cookie.c | 123 size_t hostname_len = strlen(hostname); in tailmatch() local 125 if(hostname_len < cookie_domain_len) in tailmatch() 128 if(!strcasecompare(cooke_domain, hostname + hostname_len-cookie_domain_len)) in tailmatch() 138 if(hostname_len == cookie_domain_len) in tailmatch() 140 if('.' == *(hostname + hostname_len - cookie_domain_len - 1)) in tailmatch()
|
/external/syslinux/gpxe/src/net/infiniband/ |
D | ib_sma.c | 93 int hostname_len; in ib_sma_node_desc() local 99 hostname_len = fetch_string_setting ( NULL, &hostname_setting, in ib_sma_node_desc() 103 hostname, ( ( hostname_len >= 0 ) ? " " : "" ), in ib_sma_node_desc()
|
/external/curl/lib/vtls/ |
D | cyassl.c | 338 size_t hostname_len = strlen(hostname); in cyassl_connect_step1() local 339 if((hostname_len < USHRT_MAX) && in cyassl_connect_step1() 345 (unsigned short)hostname_len) != 1)) { in cyassl_connect_step1()
|