diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-30 13:34:17 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-30 14:11:34 +0200 |
commit | cd6886c6aa5d18d4d0e47e4c8e6b90fbf114bdab (patch) | |
tree | 1ba5c967c4a53f4b86d077aabdfebdf4d52465e9 /lib/x509/x509.c | |
parent | 8858ca33d3cb672fef2fa3c2e6eceb494616d06e (diff) | |
download | gnutls-cd6886c6aa5d18d4d0e47e4c8e6b90fbf114bdab.tar.gz |
doc: updated since version of tlsfeature functionality and documented new functions
Diffstat (limited to 'lib/x509/x509.c')
-rw-r--r-- | lib/x509/x509.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/x509/x509.c b/lib/x509/x509.c index 3574e77c77..7692522bde 100644 --- a/lib/x509/x509.c +++ b/lib/x509/x509.c @@ -1,5 +1,6 @@ /* - * Copyright (C) 2003-2014 Free Software Foundation, Inc. + * Copyright (C) 2003-2016 Free Software Foundation, Inc. + * * Authors: Nikos Mavrogiannopoulos, Simon Josefsson, Howard Chu * * This file is part of GnuTLS. @@ -2060,7 +2061,7 @@ gnutls_x509_crt_get_proxy(gnutls_x509_crt_t cert, * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, * otherwise a negative error value. * - * Since: TBD + * Since: 3.5.1 **/ int gnutls_x509_tlsfeatures_init(gnutls_x509_tlsfeatures_t *f) { @@ -2077,7 +2078,7 @@ int gnutls_x509_tlsfeatures_init(gnutls_x509_tlsfeatures_t *f) * * This function will deinitialize a X.509 TLS features extention structure * - * Since: TBD + * Since: 3.5.1 **/ void gnutls_x509_tlsfeatures_deinit(gnutls_x509_tlsfeatures_t f) { @@ -2097,7 +2098,7 @@ void gnutls_x509_tlsfeatures_deinit(gnutls_x509_tlsfeatures_t f) * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, * otherwise a negative error value. * - * Since: TBD + * Since: 3.5.1 **/ int gnutls_x509_tlsfeatures_get(gnutls_x509_tlsfeatures_t f, unsigned idx, unsigned int *feature) { @@ -2128,7 +2129,7 @@ int gnutls_x509_tlsfeatures_get(gnutls_x509_tlsfeatures_t f, unsigned idx, unsig * Returns: On success, %GNUTLS_E_SUCCESS (0) is returned, * otherwise a negative error value. * - * Since: TBD + * Since: 3.5.1 **/ int gnutls_x509_crt_get_tlsfeatures(gnutls_x509_crt_t crt, gnutls_x509_tlsfeatures_t *features) |