1gnutls_alert_send(3) gnutls gnutls_alert_send(3)
2
3
4
6 gnutls_alert_send - This function sends an alert message to the peer
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 structure.
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
33 Returns 0 on success.
34
36 Report bugs to <bug-gnutls@gnu.org>.
37
39 Copyright © 2006 Free Software Foundation.
40 Permission is granted to make and distribute verbatim copies of this
41 manual provided the copyright notice and this permission notice are
42 preserved on all copies.
43
45 The full documentation for gnutls is maintained as a Texinfo manual.
46 If the info and gnutls programs are properly installed at your site,
47 the command
48
49 info gnutls
50
51 should give you access to the complete manual.
52
53
54
55gnutls 1.6.3 gnutls_alert_send(3)