Skip to content

Commit

Permalink
remove proto_version getters and most SSL_SESSION_* bindings (#8340)
Browse files Browse the repository at this point in the history
* remove proto_version getters and SSL_SESSION_* bindings

* oops
  • Loading branch information
reaperhulk authored Feb 20, 2023
1 parent 47c0b0c commit 95f214a
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/_cffi_src/openssl/ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,11 +305,6 @@
const char *SSL_CIPHER_get_version(const SSL_CIPHER *);
SSL_SESSION *SSL_get_session(const SSL *);
const unsigned char *SSL_SESSION_get_id(const SSL_SESSION *, unsigned int *);
long SSL_SESSION_get_time(const SSL_SESSION *);
long SSL_SESSION_get_timeout(const SSL_SESSION *);
int SSL_SESSION_has_ticket(const SSL_SESSION *);
unsigned long SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *);
uint64_t SSL_set_options(SSL *, uint64_t);
uint64_t SSL_get_options(SSL *);
Expand All @@ -321,13 +316,6 @@
long SSL_CTX_set_min_proto_version(SSL_CTX *, int);
long SSL_CTX_set_max_proto_version(SSL_CTX *, int);
long SSL_set_min_proto_version(SSL *, int);
long SSL_set_max_proto_version(SSL *, int);
long SSL_CTX_get_min_proto_version(SSL_CTX *);
long SSL_CTX_get_max_proto_version(SSL_CTX *);
long SSL_get_min_proto_version(SSL *);
long SSL_get_max_proto_version(SSL *);
long SSL_CTX_set_tmp_ecdh(SSL_CTX *, EC_KEY *);
long SSL_CTX_set_tmp_dh(SSL_CTX *, DH *);
Expand Down

0 comments on commit 95f214a

Please sign in to comment.