Searched refs:hints (Results 1 – 13 of 13) sorted by relevance
/openssl/doc/designs/ddd/ |
H A D | ddd-03-fd-blocking.c | 141 struct addrinfo hints = {0}, *result = NULL; in main() local 160 hints.ai_family = AF_INET; in main() 161 hints.ai_socktype = SOCK_STREAM; in main() 162 hints.ai_flags = AI_PASSIVE; in main() 163 rc = getaddrinfo(argv[1], argv[2], &hints, &result); in main()
|
H A D | ddd-04-fd-nonblocking.c | 307 struct addrinfo hints = {0}, *result = NULL; in main() local 328 hints.ai_family = AF_INET; in main() 329 hints.ai_socktype = SOCK_STREAM; in main() 330 hints.ai_flags = AI_PASSIVE; in main() 331 rc = getaddrinfo(argv[1], argv[2], &hints, &result); in main()
|
H A D | ddd-05-mem-nonblocking.c | 362 struct addrinfo hints = {0}, *result = NULL; local 380 hints.ai_family = AF_INET; 381 hints.ai_socktype = SOCK_STREAM; 382 hints.ai_flags = AI_PASSIVE; 383 rc = getaddrinfo(argv[1], argv[2], &hints, &result);
|
H A D | ddd-06-mem-uv.c | 723 struct addrinfo hints = {0}, *result = NULL; in main() local 737 hints.ai_family = AF_INET; in main() 738 hints.ai_socktype = SOCK_STREAM; in main() 739 hints.ai_flags = AI_PASSIVE; in main() 740 rc = getaddrinfo(argv[1], argv[2], &hints, &result); in main()
|
/openssl/crypto/bio/ |
H A D | bio_addr.c | 709 struct addrinfo hints; in BIO_lookup_ex() local 711 memset(&hints, 0, sizeof(hints)); in BIO_lookup_ex() 713 hints.ai_family = family; in BIO_lookup_ex() 714 hints.ai_socktype = socktype; in BIO_lookup_ex() 715 hints.ai_protocol = protocol; in BIO_lookup_ex() 720 hints.ai_flags |= AI_ADDRCONFIG; in BIO_lookup_ex() 724 hints.ai_flags |= AI_PASSIVE; in BIO_lookup_ex() 732 switch ((gai_ret = getaddrinfo(host, service, &hints, res))) { in BIO_lookup_ex() 751 if (hints.ai_flags & AI_ADDRCONFIG) { in BIO_lookup_ex() 752 hints.ai_flags &= ~AI_ADDRCONFIG; in BIO_lookup_ex() [all …]
|
/openssl/test/ |
H A D | bio_tfo_test.c | 205 struct addrinfo hints; in test_fd_tfo() local 238 memset(&hints, 0, sizeof(hints)); in test_fd_tfo() 239 hints.ai_family = AF_UNSPEC; in test_fd_tfo() 240 hints.ai_socktype = SOCK_STREAM; in test_fd_tfo() 241 if (!TEST_int_eq(getaddrinfo(NULL, "0", &hints, &ai), 0)) in test_fd_tfo()
|
/openssl/doc/man3/ |
H A D | OSSL_ENCODER_CTX_new_for_pkey.pod | 114 These are only 'hints' since the encoder implementations are free to
|
H A D | SSL_CTX_use_psk_identity_hint.pod | 58 Identity hints are not relevant for TLSv1.3. A server application wishing to use
|
H A D | ENGINE_add.pod | 251 the F<< <openssl/engine.h> >> header file includes some hints.
|
/openssl/dev/ |
H A D | release.sh | 662 B<release.sh> tries to be smart and figure out the next release if no hints
|
/openssl/doc/man7/ |
H A D | provider-encoder.pod | 196 hints, but must do so with care. In the end, the output must make sense,
|
/openssl/doc/man1/ |
H A D | openssl-cmp.pod.in | 1311 although they usually contain hints that would be helpful for diagnostics.
|
/openssl/ |
H A D | CHANGES.md | 8403 If PSK identity hints are received by a multi-threaded client then 9482 If PSK identity hints are received by a multi-threaded client then
|
Completed in 88 milliseconds