1
2
3
4
5@deftypefun {int} {gnutls_x509_crt_set_proxy} (gnutls_x509_crt_t @var{crt}, int @var{pathLenConstraint}, const char * @var{policyLanguage}, const char * @var{policy}, size_t @var{sizeof_policy})
6@var{crt}: a certificate of type @code{gnutls_x509_crt_t}
7
8@var{pathLenConstraint}: non-negative error codes indicate maximum length of path,
9and negative error codes indicate that the pathLenConstraints field should
10not be present.
11
12@var{policyLanguage}: OID describing the language of  @code{policy} .
13
14@var{policy}: uint8_t byte array with policy language, can be @code{NULL}
15
16@var{sizeof_policy}: size of  @code{policy} .
17
18This function will set the proxyCertInfo extension.
19
20@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
21negative error value.
22@end deftypefun
23