diff options
author | Matt Caswell <matt@openssl.org> | 2017-02-21 10:22:22 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-03-02 18:44:14 +0100 |
commit | 49e7fe12eac1e84af726e0110ee29073699ed46b (patch) | |
tree | f36e1908e9a4af56dc9fa7339b21d1200f52ed2b /util/libssl.num | |
parent | Parse the ticket_early_data_info extension (diff) | |
download | openssl-49e7fe12eac1e84af726e0110ee29073699ed46b.tar.xz openssl-49e7fe12eac1e84af726e0110ee29073699ed46b.zip |
Provide functions to write early data
We provide SSL_write_early() which *must* be called first on a connection
(prior to any other IO function including SSL_connect()/SSL_do_handshake()).
Also SSL_write_early_finish() which signals the end of early data.
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2737)
Diffstat (limited to 'util/libssl.num')
-rw-r--r-- | util/libssl.num | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/libssl.num b/util/libssl.num index d3f7a4f596..52ae727b37 100644 --- a/util/libssl.num +++ b/util/libssl.num @@ -428,3 +428,5 @@ SSL_set_max_early_data 428 1_1_1 EXIST::FUNCTION: SSL_CTX_set_max_early_data 429 1_1_1 EXIST::FUNCTION: SSL_get_max_early_data 430 1_1_1 EXIST::FUNCTION: SSL_CTX_get_max_early_data 431 1_1_1 EXIST::FUNCTION: +SSL_write_early 432 1_1_1 EXIST::FUNCTION: +SSL_write_early_finish 433 1_1_1 EXIST::FUNCTION: |