1gnutls_alert_send(3) gnutls gnutls_alert_send(3)
2
3
4
6 gnutls_alert_send - API function
7
9 #include <gnutls/gnutls.h>
10
11 int gnutls_alert_send(gnutls_session_t session, gnutls_alert_level_t
12 level, gnutls_alert_description_t desc);
13
15 gnutls_session_t session
16 is a gnutls_session_t type.
17
18 gnutls_alert_level_t level
19 is the level of the alert
20
21 gnutls_alert_description_t desc
22 is the alert description
23
25 This function will send an alert to the peer in order to inform him of
26 something important (eg. his Certificate could not be verified). If
27 the alert level is Fatal then the peer is expected to close the connec‐
28 tion, otherwise he may ignore the alert and continue.
29
30 The error code of the underlying record send function will be returned,
31 so you may also receive GNUTLS_E_INTERRUPTED or GNUTLS_E_AGAIN as well.
32
34 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise an error code
35 is returned.
36
38 Report bugs to <bugs@gnutls.org>.
39 Home page: https://www.gnutls.org
40
41
43 Copyright © 2001-2020 Free Software Foundation, Inc., and others.
44 Copying and distribution of this file, with or without modification,
45 are permitted in any medium without royalty provided the copyright
46 notice and this notice are preserved.
47
49 The full documentation for gnutls is maintained as a Texinfo manual.
50 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
51 visit
52
53 https://www.gnutls.org/manual/
54
55gnutls 3.6.13 gnutls_alert_send(3)