diff options
author | Daiki Ueno <ueno@gnu.org> | 2020-03-24 17:51:56 +0100 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2020-11-19 18:18:38 +0100 |
commit | cc50fa0778799caf8dd0a2b87abb23f4feac2b34 (patch) | |
tree | e749de8c5176e1da113f10d0df5865a2b19fa4cc /doc | |
parent | f8dc2b2fadc889df569b983b2741f0928dcf0bbc (diff) | |
download | gnutls-cc50fa0778799caf8dd0a2b87abb23f4feac2b34.tar.gz |
alert: add callback to intercept alert messages
This adds gnutls_alert_set_read_function(), to allow QUIC
implementations to be notified when an alert message is sent.
Signed-off-by: Daiki Ueno <ueno@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 | ||||
-rw-r--r-- | doc/manpages/Makefile.am | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index fd495a83a3..ea2af31976 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -658,6 +658,8 @@ FUNCS += functions/gnutls_alert_send FUNCS += functions/gnutls_alert_send.short FUNCS += functions/gnutls_alert_send_appropriate FUNCS += functions/gnutls_alert_send_appropriate.short +FUNCS += functions/gnutls_alert_set_read_function +FUNCS += functions/gnutls_alert_set_read_function.short FUNCS += functions/gnutls_alpn_get_selected_protocol FUNCS += functions/gnutls_alpn_get_selected_protocol.short FUNCS += functions/gnutls_alpn_set_protocols diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am index 66fb70ab56..0cfec06b7a 100644 --- a/doc/manpages/Makefile.am +++ b/doc/manpages/Makefile.am @@ -130,6 +130,7 @@ APIMANS += gnutls_alert_get_name.3 APIMANS += gnutls_alert_get_strname.3 APIMANS += gnutls_alert_send.3 APIMANS += gnutls_alert_send_appropriate.3 +APIMANS += gnutls_alert_set_read_function.3 APIMANS += gnutls_alpn_get_selected_protocol.3 APIMANS += gnutls_alpn_set_protocols.3 APIMANS += gnutls_anon_allocate_client_credentials.3 |