From 10a602f62248482674a8c758e4266797bd132616 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 19 Nov 2016 14:25:25 +0800 Subject: add two error codes for pypy ssl stdlib (#3253) --- src/_cffi_src/openssl/err.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/_cffi_src/openssl/err.py b/src/_cffi_src/openssl/err.py index d824cf37..f388c5f0 100644 --- a/src/_cffi_src/openssl/err.py +++ b/src/_cffi_src/openssl/err.py @@ -80,6 +80,7 @@ static const int ASN1_R_WRONG_TAG; static const int ASN1_R_NO_CONTENT_TYPE; static const int ASN1_R_NO_MULTIPART_BODY_FAILURE; static const int ASN1_R_NO_MULTIPART_BOUNDARY; +static const int ASN1_R_HEADER_TOO_LONG; static const int DH_F_COMPUTE_KEY; @@ -198,6 +199,8 @@ static const int SSL_TLSEXT_ERR_NOACK; static const int SSL_AD_INTERNAL_ERROR; static const int SSL_AD_ACCESS_DENIED; static const int SSL_AD_HANDSHAKE_FAILURE; + +static const int X509_R_CERT_ALREADY_IN_HASH_TABLE; """ FUNCTIONS = """ -- cgit v1.2.3