Home
last modified time | relevance | path

Searched refs:hostname (Results 1 – 14 of 14) sorted by relevance

/openthread-latest/third_party/mbedtls/repo/library/
Dssl_client.c36 if (ssl->hostname == NULL) { in ssl_write_hostname_ext()
42 ssl->hostname)); in ssl_write_hostname_ext()
44 hostname_len = strlen(ssl->hostname); in ssl_write_hostname_ext()
88 memcpy(p, ssl->hostname, hostname_len); in ssl_write_hostname_ext()
886 int hostname_mismatch = ssl->hostname != NULL || in ssl_prepare_client_hello()
887 session_negotiate->hostname != NULL; in ssl_prepare_client_hello()
888 if (ssl->hostname != NULL && session_negotiate->hostname != NULL) { in ssl_prepare_client_hello()
890 ssl->hostname, session_negotiate->hostname) != 0; in ssl_prepare_client_hello()
901 ssl->hostname); in ssl_prepare_client_hello()
Dssl_tls.c237 dst->hostname = NULL; in mbedtls_ssl_session_copy()
307 ret = mbedtls_ssl_session_set_hostname(dst, src->hostname); in mbedtls_ssl_session_copy()
2773 int mbedtls_ssl_set_hostname(mbedtls_ssl_context *ssl, const char *hostname) in mbedtls_ssl_set_hostname() argument
2780 if (hostname != NULL) { in mbedtls_ssl_set_hostname()
2781 hostname_len = strlen(hostname); in mbedtls_ssl_set_hostname()
2791 if (ssl->hostname != NULL) { in mbedtls_ssl_set_hostname()
2792 mbedtls_zeroize_and_free(ssl->hostname, strlen(ssl->hostname)); in mbedtls_ssl_set_hostname()
2797 if (hostname == NULL) { in mbedtls_ssl_set_hostname()
2798 ssl->hostname = NULL; in mbedtls_ssl_set_hostname()
2800 ssl->hostname = mbedtls_calloc(1, hostname_len + 1); in mbedtls_ssl_set_hostname()
[all …]
Dssl_tls13_generic.c704 ssl->hostname, in ssl_tls13_validate_certificate()
Dssl_misc.h2852 const char *hostname);
/openthread-latest/third_party/mbedtls/repo/programs/ssl/
Dssl_mail_client.c334 char hostname[32]; in main() local
623 gethostname(hostname, 32); in main()
624 len = sprintf((char *) buf, "EHLO %s\r\n", hostname); in main()
645 gethostname(hostname, 32); in main()
646 len = sprintf((char *) buf, "EHLO %s\r\n", hostname); in main()
658 gethostname(hostname, 32); in main()
/openthread-latest/tests/scripts/thread-cert/
Dtest_dnssd.py234 hostname, argument
240 client.srp_client_set_host_name(hostname)
Dnode.py3447 def dns_resolve(self, hostname, server=None, port=53): argument
3476 port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl = m.groups()
3481 'host': hostname,
3950 def publish_mdns_host(self, hostname, addresses): argument
/openthread-latest/tests/scripts/thread-cert/border_router/
Dtest_dnssd_instance_name_with_space.py145 …def _config_srp_client_services(self, client, instancename, hostname, port, priority, weight, addr… argument
147 client.srp_client_set_host_name(hostname)
Dtest_dnssd_server.py273 …def _config_srp_client_services(self, client, instancename, hostname, port, priority, weight, addr… argument
275 client.srp_client_set_host_name(hostname)
Dtest_dnssd_server_multi_border_routers.py352 …def _config_srp_client_services(self, client, instancename, hostname, port, priority, weight, addr… argument
354 client.srp_client_set_host_name(hostname)
/openthread-latest/third_party/mbedtls/repo/include/mbedtls/
Dssl.h1304 char *MBEDTLS_PRIVATE(hostname); /*!< host name binded with tickets */
1881 char *MBEDTLS_PRIVATE(hostname); /*!< expected peer CN for verification
3971 int mbedtls_ssl_set_hostname(mbedtls_ssl_context *ssl, const char *hostname);
3985 return ssl->MBEDTLS_PRIVATE(hostname); in mbedtls_ssl_get_hostname()
/openthread-latest/tools/otci/otci/
Dotci.py872 …for ins, port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl in re.fin…
881 'host': hostname,
891 def dns_resolve(self, hostname: str) -> List[Dict]:
915 … port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl = m.groups()
922 'host': hostname,
/openthread-latest/src/cli/
DREADME.md1377 ### dns resolve \<hostname\> \[DNS server IP\] \[DNS server port\] \[response timeout (ms)\] \[max …
1379 Send DNS Query to obtain IPv6 address for given hostname.
1381 The parameters after `hostname` are optional. Any unspecified (or zero) value for these optional pa…
1401 ### dns resolve4 \<hostname\> \[DNS server IP\] \[DNS server port\] \[response timeout (ms)\] \[max…
1403 Send DNS query to obtain IPv4 address for a given hostname and provide the NAT64 synthesized IPv6 a…
1407 The parameters after `hostname` are optional. Any unspecified (or zero) value for these optional pa…
/openthread-latest/third_party/mbedtls/repo/
DChangeLog356 * X.509 hostname verification now supports IPAddress Subject Alternate Names.
372 * X.509 hostname verification now partially supports URI Subject Alternate
409 `mbedtls_ssl_context.hostname`.
4242 overflow of the hostname or session ticket. Found by Guido Vranken,
4277 * Added checking of hostname length in mbedtls_ssl_set_hostname() to ensure
5016 * Fixed X.509 hostname comparison (with non-regular characters)
5255 * Fixed X.509 hostname comparison (with non-regular characters)
5316 * Fixed potential heap buffer overflow on large hostname setting
5526 * Potential heap buffer overflow on large hostname setting
5978 * Added support on the client side for the TLS "hostname" extension