diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2011-11-14 18:43:03 +0800 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2011-11-14 18:43:03 +0800 |
commit | 80acb6db8133ebd16c3257d33721994ed164ba9f (patch) | |
tree | 68775e4feeb4aa81f19524a8389d5a8d7ad91b8b /lib/ssl_openssl.c | |
parent | 03a8f8ec82719512f059fdd2c0dca3bb919b059c (diff) |
GnuTLS now also needs ssl_pending() implemented. Bug #860.
Diffstat (limited to 'lib/ssl_openssl.c')
-rw-r--r-- | lib/ssl_openssl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/ssl_openssl.c b/lib/ssl_openssl.c index 64bc9257..5f64042d 100644 --- a/lib/ssl_openssl.c +++ b/lib/ssl_openssl.c @@ -240,15 +240,6 @@ int ssl_write( void *conn, const char *buf, int len ) return st; } -/* Only OpenSSL *really* needs this (and well, maybe NSS). See for more info: - http://www.gnu.org/software/gnutls/manual/gnutls.html#index-gnutls_005frecord_005fcheck_005fpending-209 - http://www.openssl.org/docs/ssl/SSL_pending.html - - Required because OpenSSL empties the TCP buffer completely but doesn't - necessarily give us all the unencrypted data. - - Returns 0 if there's nothing left or if we don't have to care (GnuTLS), - 1 if there's more data. */ int ssl_pending( void *conn ) { return ( ((struct scd*)conn) && ((struct scd*)conn)->established ) ? |