Deleted Added
full compact
SSL_alert_type_string.pod (89837) SSL_alert_type_string.pod (109998)
1=pod
2
3=head1 NAME
4
5SSL_alert_type_string, SSL_alert_type_string_long, SSL_alert_desc_string, SSL_alert_desc_string_long - get textual description of alert information
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
1=pod
2
3=head1 NAME
4
5SSL_alert_type_string, SSL_alert_type_string_long, SSL_alert_desc_string, SSL_alert_desc_string_long - get textual description of alert information
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 char *SSL_alert_type_string(int value);
12 char *SSL_alert_type_string_long(int value);
11 const char *SSL_alert_type_string(int value);
12 const char *SSL_alert_type_string_long(int value);
13
13
14 char *SSL_alert_desc_string(int value);
15 char *SSL_alert_desc_string_long(int value);
14 const char *SSL_alert_desc_string(int value);
15 const char *SSL_alert_desc_string_long(int value);
16
17=head1 DESCRIPTION
18
19SSL_alert_type_string() returns a one letter string indicating the
20type of the alert specified by B<value>.
21
22SSL_alert_type_string_long() returns a string indicating the type of the alert
23specified by B<value>.

--- 205 unchanged lines hidden ---
16
17=head1 DESCRIPTION
18
19SSL_alert_type_string() returns a one letter string indicating the
20type of the alert specified by B<value>.
21
22SSL_alert_type_string_long() returns a string indicating the type of the alert
23specified by B<value>.

--- 205 unchanged lines hidden ---