aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-12-02 03:32:38 -0500
committerAdam Langley <agl@google.com>2014-12-04 00:22:14 +0000
commit90eeb11652c530dfdcb8d5dc31359d7a0822ecae (patch)
treed22e4c62520d1891da4dfe67f96ca2459481d3bd /include
parentedb03cf31fa12ac3166496d6fdd38b488ef2a31e (diff)
downloadboringssl-90eeb11652c530dfdcb8d5dc31359d7a0822ecae.zip
boringssl-90eeb11652c530dfdcb8d5dc31359d7a0822ecae.tar.gz
boringssl-90eeb11652c530dfdcb8d5dc31359d7a0822ecae.tar.bz2
Remove SSL_set_debug.
It just inserts extra flushes everywhere and isn't used. Change-Id: I082e4bada405611f4986ba852dd5575265854036 Reviewed-on: https://boringssl-review.googlesource.com/2456 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/ssl.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/openssl/ssl.h b/include/openssl/ssl.h
index c431022..9d33c02 100644
--- a/include/openssl/ssl.h
+++ b/include/openssl/ssl.h
@@ -1285,9 +1285,6 @@ struct ssl_st
unsigned char *psk, unsigned int max_psk_len);
SSL_CTX *ctx;
- /* set this flag to 1 and a sleep(1) is put into all SSL_read()
- * and SSL_write() calls, good for nbio debuging :-) */
- int debug;
/* extra application data */
long verify_result;
@@ -2176,7 +2173,6 @@ OPENSSL_EXPORT const char *SSL_COMP_get_name(const void *comp);
OPENSSL_EXPORT void *SSL_COMP_get_compression_methods(void);
OPENSSL_EXPORT int SSL_COMP_add_compression_method(int id,void *cm);
-OPENSSL_EXPORT void SSL_set_debug(SSL *s, int debug);
OPENSSL_EXPORT int SSL_cache_hit(SSL *s);
OPENSSL_EXPORT int SSL_is_server(SSL *s);