From 8065287284f9776e14ee80bc00da3df97c6b8d1e Mon Sep 17 00:00:00 2001 From: Stephen Farrell Date: Thu, 30 May 2024 19:01:26 +0100 Subject: [PATCH] added back SSL_ech_set_outer_alpn_protos() --- doc/designs/ech-api.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/designs/ech-api.md b/doc/designs/ech-api.md index 773fcf635aca5..4201defb5d3b7 100644 --- a/doc/designs/ech-api.md +++ b/doc/designs/ech-api.md @@ -311,7 +311,9 @@ outer CH with no SNI at all. int SSL_ech_set_server_names(SSL *s, const char *inner_name, const char *outer_name, int no_outer); int SSL_ech_set_outer_server_name(SSL *s, const char *outer_name, int no_outer); -int SSL_CTX_ech_set_outer_alpn_protos(SSL *s, const unsigned char *protos, +int SSL_ech_set_outer_alpn_protos(SSL *s, const unsigned char *protos, + unsigned int protos_len); +int SSL_CTX_ech_set_outer_alpn_protos(SSL_CTX *s, const unsigned char *protos, unsigned int protos_len); ```