Home
last modified time | relevance | path

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

/openthread-2.7.6/third_party/mbedtls/repo/programs/ssl/
Dssl_mail_client.c370 char hostname[32]; in main() local
663 gethostname( hostname, 32 ); in main()
664 len = sprintf( (char *) buf, "EHLO %s\r\n", hostname ); in main()
689 gethostname( hostname, 32 ); in main()
690 len = sprintf( (char *) buf, "EHLO %s\r\n", hostname ); in main()
703 gethostname( hostname, 32 ); in main()
/openthread-2.7.6/tests/scripts/thread-cert/
Dtest_dnssd.py232 hostname, argument
242 client.srp_client_set_host_name(hostname)
Dnode.py2579 def dns_resolve(self, hostname, server=None, port=53): argument
2633 … port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl = m.groups()
2638 'host': hostname,
2705 …for ins, port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl in re.fin…
2712 'host': hostname,
/openthread-2.7.6/tests/scripts/thread-cert/border_router/
Dtest_dnssd_server.py282 …def _config_srp_client_services(self, client, instancename, hostname, port, priority, weight, addr… argument
284 client.srp_client_set_host_name(hostname)
/openthread-2.7.6/third_party/mbedtls/repo/library/
Dssl_tls.c2515 ssl->hostname, in ssl_parse_certificate_verify()
2545 ssl->hostname, in ssl_parse_certificate_verify()
4611 int mbedtls_ssl_set_hostname( mbedtls_ssl_context *ssl, const char *hostname ) in mbedtls_ssl_set_hostname() argument
4618 if( hostname != NULL ) in mbedtls_ssl_set_hostname()
4620 hostname_len = strlen( hostname ); in mbedtls_ssl_set_hostname()
4629 if( ssl->hostname != NULL ) in mbedtls_ssl_set_hostname()
4631 mbedtls_platform_zeroize( ssl->hostname, strlen( ssl->hostname ) ); in mbedtls_ssl_set_hostname()
4632 mbedtls_free( ssl->hostname ); in mbedtls_ssl_set_hostname()
4637 if( hostname == NULL ) in mbedtls_ssl_set_hostname()
4639 ssl->hostname = NULL; in mbedtls_ssl_set_hostname()
[all …]
Dssl_cli.c102 if( ssl->hostname == NULL ) in ssl_write_hostname_ext()
107 ssl->hostname ) ); in ssl_write_hostname_ext()
109 hostname_len = strlen( ssl->hostname ); in ssl_write_hostname_ext()
152 memcpy( p, ssl->hostname, hostname_len ); in ssl_write_hostname_ext()
/openthread-2.7.6/third_party/mbedtls/repo/include/mbedtls/
Dssl.h1349 char *hostname; /*!< expected peer CN for verification member
3061 int mbedtls_ssl_set_hostname( mbedtls_ssl_context *ssl, const char *hostname );
/openthread-2.7.6/tools/otci/otci/
Dotci.py791 …for ins, port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl in re.fin…
800 'host': hostname,
810 def dns_resolve(self, hostname: str) -> List[Dict]:
833 … port, priority, weight, srv_ttl, hostname, address, aaaa_ttl, txt_data, txt_ttl = m.groups()
840 'host': hostname,
/openthread-2.7.6/src/cli/
DREADME.md1013 ### dns resolve \<hostname\> \[DNS server IP\] \[DNS server port\] \[response timeout (ms)\] \[max …
1015 Send DNS Query to obtain IPv6 address for given hostname.
1017 The parameters after `hostname` are optional. Any unspecified (or zero) value for these optional pa…
/openthread-2.7.6/third_party/mbedtls/repo/
DChangeLog2215 overflow of the hostname or session ticket. Found by Guido Vranken,
2250 * Added checking of hostname length in mbedtls_ssl_set_hostname() to ensure
2989 * Fixed X.509 hostname comparison (with non-regular characters)
3228 * Fixed X.509 hostname comparison (with non-regular characters)
3289 * Fixed potential heap buffer overflow on large hostname setting
3499 * Potential heap buffer overflow on large hostname setting
3951 * Added support on the client side for the TLS "hostname" extension