VirtualBox

Ignore:
Timestamp:
Mar 3, 2022 7:17:34 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
150325
Message:

libs/openssl-3.0.1: started applying and adjusting our OpenSSL changes to 3.0.1. bugref:10128

Location:
trunk/src/libs/openssl-3.0.1
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/openssl-3.0.1

    • Property svn:mergeinfo
      •  

        old new  
        1212/vendor/openssl/1.1.1c:131722-131725
        1313/vendor/openssl/1.1.1k:145841-145843
         14/vendor/openssl/3.0.1:150323-150324
         15/vendor/openssl/current:147554-150322
  • trunk/src/libs/openssl-3.0.1/ssl/statem/statem.h

    r91772 r94082  
    11/*
    2  * Copyright 2015-2018 The OpenSSL Project Authors. All Rights Reserved.
     2 * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
    33 *
    4  * Licensed under the OpenSSL license (the "License").  You may not use
     4 * Licensed under the Apache License 2.0 (the "License").  You may not use
    55 * this file except in compliance with the License.  You can obtain a copy
    66 * in the file LICENSE in the source distribution or at
     
    133133void ossl_statem_clear(SSL *s);
    134134void ossl_statem_set_renegotiate(SSL *s);
    135 void ossl_statem_fatal(SSL *s, int al, int func, int reason, const char *file,
    136                        int line);
     135void ossl_statem_send_fatal(SSL *s, int al);
     136void ossl_statem_fatal(SSL *s, int al, int reason, const char *fmt, ...);
    137137# define SSL_AD_NO_ALERT    -1
    138 # ifndef OPENSSL_NO_ERR
    139 #  define SSLfatal(s, al, f, r)  ossl_statem_fatal((s), (al), (f), (r), \
    140                                                    OPENSSL_FILE, OPENSSL_LINE)
    141 # else
    142 #  define SSLfatal(s, al, f, r)  ossl_statem_fatal((s), (al), (f), (r), NULL, 0)
    143 # endif
     138# define SSLfatal_alert(s, al) ossl_statem_send_fatal((s), (al))
     139# define SSLfatal(s, al, r) SSLfatal_data((s), (al), (r), NULL)
     140# define SSLfatal_data                                          \
     141    (ERR_new(),                                                 \
     142     ERR_set_debug(OPENSSL_FILE, OPENSSL_LINE, OPENSSL_FUNC),   \
     143     ossl_statem_fatal)
    144144
    145145int ossl_statem_in_error(const SSL *s);
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