Remove SSL_renegotiate_abbreviated.

It has no callers in internal code.

Change-Id: I53cf1769b71be6a0441533b6af7d3f64aab5098a
Reviewed-on: https://boringssl-review.googlesource.com/3219
Reviewed-by: Adam Langley <agl@google.com>
This commit is contained in:
David Benjamin 2015-01-21 23:04:16 -05:00 committed by Adam Langley
parent ac6900b0d3
commit d4f924c4b1
2 changed files with 0 additions and 10 deletions

View File

@ -2058,7 +2058,6 @@ OPENSSL_EXPORT STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s);
OPENSSL_EXPORT int SSL_do_handshake(SSL *s);
OPENSSL_EXPORT int SSL_renegotiate(SSL *s);
OPENSSL_EXPORT int SSL_renegotiate_abbreviated(SSL *s);
OPENSSL_EXPORT int SSL_renegotiate_pending(SSL *s);
OPENSSL_EXPORT int SSL_shutdown(SSL *s);

View File

@ -1013,15 +1013,6 @@ int SSL_renegotiate(SSL *s) {
return s->method->ssl_renegotiate(s);
}
int SSL_renegotiate_abbreviated(SSL *s) {
if (s->renegotiate == 0) {
s->renegotiate = 1;
}
s->new_session = 0;
return s->method->ssl_renegotiate(s);
}
int SSL_renegotiate_pending(SSL *s) {
/* becomes true when negotiation is requested; false again once a handshake
* has finished */