1
2
3
4
5@deftypefun {int} {gnutls_x509_crq_set_subject_alt_name} (gnutls_x509_crq_t @var{crq}, gnutls_x509_subject_alt_name_t @var{nt}, const void * @var{data}, unsigned int @var{data_size}, unsigned int @var{flags})
6@var{crq}: a certificate request of type @code{gnutls_x509_crq_t}
7
8@var{nt}: is one of the @code{gnutls_x509_subject_alt_name_t}  enumerations
9
10@var{data}: The data to be set
11
12@var{data_size}: The size of data to be set
13
14@var{flags}: @code{GNUTLS_FSAN_SET}  to clear previous data or
15@code{GNUTLS_FSAN_APPEND}  to append.
16
17This function will set the subject alternative name certificate
18extension.  It can set the following types:
19
20@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
21negative error value.
22
23@strong{Since:} 2.8.0
24@end deftypefun
25