@ref{gnutls_certificate_server_set_request} function. If a
certificate is to be requested from the client during the handshake,
the server will send a certificate request message that contains a
-list of acceptable certificate signers. The client may then send a
-certificate, signed by one of the server's acceptable signers. In
-@acronym{GnuTLS} the server's acceptable signers list is constructed
-using the trusted CA certificates in the credentials structure.
+list of acceptable certificate signers. In @acronym{GnuTLS} the certificate
+signers list is constructed using the trusted Certificate Authorities by the
+server. That is the ones set using
+@itemize
+@item @ref{gnutls_certificate_set_x509_trust_file}
+@item @ref{gnutls_certificate_set_x509_trust_mem}
+@end itemize
+
+Sending of the names of the CAs can be controlled using
+@ref{gnutls_certificate_send_x509_rdn_sequence}. The client, then,
+may send a certificate, signed by one of the server's acceptable
+signers.
@subsection Resuming Sessions
@anchor{resume}
}
/**
- * gnutls_certificate_send_x509_rdn_sequence - This function will order gnutls to or not to send the x.509 rdn sequence
+ * gnutls_certificate_send_x509_rdn_sequence - This function will order gnutls to send or not the x.509 rdn sequence
* @session: is a pointer to a #gnutls_session_t structure.
* @status: is 0 or 1
*
* gnutls_certificate_verify_peers2().
* This function may be called multiple times.
*
- * In case of a server the CAs set here will be sent to the client if
- * a certificate request is sent. This can be disabled using
+ * In case of a server the names of the CAs set here will be sent to the
+ * client if a certificate request is sent. This can be disabled using
* gnutls_certificate_send_x509_rdn_sequence().
*
* Returns the number of certificates processed or a negative
option (outfile) STR "FILE" { $outfile = $1 } "Output file."
#char *infile;
-option (infile) STR "FILE" { $infile = $1 } "Output file."
+option (infile) STR "FILE" { $infile = $1 } "Input file."
#char *template;
option (template) STR "FILE" { $template = $1 } "Template file to use for non interactive operation."