Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/ssl/statem/statem.h
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- 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 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/ssl/statem/statem.h
r91772 r94082 1 1 /* 2 * Copyright 2015-20 18The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 133 133 void ossl_statem_clear(SSL *s); 134 134 void 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);135 void ossl_statem_send_fatal(SSL *s, int al); 136 void ossl_statem_fatal(SSL *s, int al, int reason, const char *fmt, ...); 137 137 # define SSL_AD_NO_ALERT -1 138 # ifndef OPENSSL_NO_ERR139 # 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) 144 144 145 145 int ossl_statem_in_error(const SSL *s);
Note:
See TracChangeset
for help on using the changeset viewer.