VirtualBox

Ignore:
Timestamp:
Nov 2, 2022 7:40:16 AM (2 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
154372
Message:

libs: Switch to openssl-3.0.7, bugref:10317

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  
        1515/vendor/openssl/3.0.2:150728-150729
        1616/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
  • trunk/src/libs/openssl-3.0.7/crypto/bio/bss_conn.c

    r94082 r97372  
    11/*
    2  * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    44 * Licensed under the Apache License 2.0 (the "License").  You may not use
     
    189189
    190190        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;
    191194            i = BIO_sock_error(b->num);
    192195            if (i != 0) {
     
    206209                ret = 0;
    207210                goto exit_loop;
    208             } else
     211            } else {
    209212                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            }
    210223            break;
    211224
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette