Skip to content

Commit

Permalink
QUIC MSST: Revise SSL_get_conn_close_info API (char)
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #20765)
  • Loading branch information
hlandau committed May 12, 2023
1 parent 5fc256c commit bb9b8a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/man3/SSL_get_conn_close_info.pod
Expand Up @@ -12,8 +12,8 @@ SSL_get_conn_close_info - get information about why a QUIC connection was closed
uint64_t error_code;
char *reason;
size_t reason_len;
char is_local;
char is_transport;
int is_local;
int is_transport;
} SSL_CONN_CLOSE_INFO;

int SSL_get_conn_close_info(SSL *ssl, SSL_CONN_CLOSE_INFO *info,
Expand Down
2 changes: 1 addition & 1 deletion include/openssl/ssl.h.in
Expand Up @@ -2343,7 +2343,7 @@ typedef struct ssl_conn_close_info_st {
uint64_t error_code;
char *reason;
size_t reason_len;
char is_local, is_transport;
int is_local, is_transport;
} SSL_CONN_CLOSE_INFO;

__owur int SSL_get_conn_close_info(SSL *ssl,
Expand Down

0 comments on commit bb9b8a3

Please sign in to comment.