Changeset 97372 in vbox for trunk/src/libs/openssl-3.0.7/crypto/bio/bss_conn.c
- Timestamp:
- Nov 2, 2022 7:40:16 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154372
- Location:
- trunk/src/libs/openssl-3.0.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.7
- Property svn:mergeinfo
-
old new 15 15 /vendor/openssl/3.0.2:150728-150729 16 16 /vendor/openssl/3.0.3:151497-151729 17 /vendor/openssl/current:147554-151496 17 /vendor/openssl/3.0.7:154371 18 /vendor/openssl/current:147554-154370
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.7/crypto/bio/bss_conn.c
r94082 r97372 1 1 /* 2 * Copyright 1995-202 1The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 4 * Licensed under the Apache License 2.0 (the "License"). You may not use … … 189 189 190 190 case BIO_CONN_S_BLOCKED_CONNECT: 191 /* wait for socket being writable, before querying BIO_sock_error */ 192 if (BIO_socket_wait(b->num, 0, time(NULL)) == 0) 193 break; 191 194 i = BIO_sock_error(b->num); 192 195 if (i != 0) { … … 206 209 ret = 0; 207 210 goto exit_loop; 208 } else 211 } else { 209 212 c->state = BIO_CONN_S_OK; 213 # ifndef OPENSSL_NO_KTLS 214 /* 215 * The new socket is created successfully regardless of ktls_enable. 216 * ktls_enable doesn't change any functionality of the socket, except 217 * changing the setsockopt to enable the processing of ktls_start. 218 * Thus, it is not a problem to call it for non-TLS sockets. 219 */ 220 ktls_enable(b->num); 221 # endif 222 } 210 223 break; 211 224
Note:
See TracChangeset
for help on using the changeset viewer.