diff options
author | Ralf S. Engelschall <rse@openssl.org> | 2000-02-24 11:48:36 +0100 |
---|---|---|
committer | Ralf S. Engelschall <rse@openssl.org> | 2000-02-24 11:48:36 +0100 |
commit | c6a33c6f6128172baf30f50edeb0def90e7d0618 (patch) | |
tree | 8bbc7fc3b4c113c320534d91c084acb98df89390 /ssl | |
parent | Make gcc 2.95.2 happy here, too. (diff) | |
download | openssl-c6a33c6f6128172baf30f50edeb0def90e7d0618.tar.xz openssl-c6a33c6f6128172baf30f50edeb0def90e7d0618.zip |
Add missing prototypes for new functions
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/ssl.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1037,7 +1037,9 @@ int SSL_read(SSL *ssl,char *buf,int num); int SSL_peek(SSL *ssl,char *buf,int num); int SSL_write(SSL *ssl,const char *buf,int num); long SSL_ctrl(SSL *ssl,int cmd, long larg, char *parg); +long SSL_callback_ctrl(SSL *, int, void (*)()); long SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, char *parg); +long SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)()); int SSL_get_error(SSL *s,int ret_code); const char *SSL_get_version(SSL *s); |