diff options
author | Simon Josefsson <simon@josefsson.org> | 2012-01-20 13:41:19 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2012-01-20 13:41:19 +0100 |
commit | 6dbde9ad3c9f60907a98fd202cc311c38acfb570 (patch) | |
tree | 444fdc2e3bd41c8fb5bca72cc05f7796275a71ae /doc/manpages/Makefile.am | |
parent | c5791654cc44e5398b3db10c4ddcc099a992a9c3 (diff) | |
download | gnutls-6dbde9ad3c9f60907a98fd202cc311c38acfb570.tar.gz |
Add OCSP functionality.
Diffstat (limited to 'doc/manpages/Makefile.am')
-rw-r--r-- | doc/manpages/Makefile.am | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/doc/manpages/Makefile.am b/doc/manpages/Makefile.am index fc49dab4b7..5057a076da 100644 --- a/doc/manpages/Makefile.am +++ b/doc/manpages/Makefile.am @@ -359,6 +359,38 @@ APIMANS += gnutls_certificate_set_params_function.3 APIMANS += gnutls_anon_set_params_function.3 APIMANS += gnutls_psk_set_params_function.3 APIMANS += gnutls_hex2bin.3 +APIMANS += gnutls_ocsp_req_init.3 +APIMANS += gnutls_ocsp_req_deinit.3 +APIMANS += gnutls_ocsp_req_import.3 +APIMANS += gnutls_ocsp_req_export.3 +APIMANS += gnutls_ocsp_req_print.3 +APIMANS += gnutls_ocsp_req_get_version.3 +APIMANS += gnutls_ocsp_req_get_cert_id.3 +APIMANS += gnutls_ocsp_req_add_cert_id.3 +APIMANS += gnutls_ocsp_req_add_cert.3 +APIMANS += gnutls_ocsp_req_get_extension.3 +APIMANS += gnutls_ocsp_req_set_extension.3 +APIMANS += gnutls_ocsp_req_get_nonce.3 +APIMANS += gnutls_ocsp_req_set_nonce.3 +APIMANS += gnutls_ocsp_req_randomize_nonce.3 +APIMANS += gnutls_ocsp_resp_init.3 +APIMANS += gnutls_ocsp_resp_deinit.3 +APIMANS += gnutls_ocsp_resp_import.3 +APIMANS += gnutls_ocsp_resp_export.3 +APIMANS += gnutls_ocsp_resp_print.3 +APIMANS += gnutls_ocsp_resp_get_status.3 +APIMANS += gnutls_ocsp_resp_get_response.3 +APIMANS += gnutls_ocsp_resp_get_version.3 +APIMANS += gnutls_ocsp_resp_get_responder.3 +APIMANS += gnutls_ocsp_resp_get_produced.3 +APIMANS += gnutls_ocsp_resp_get_single.3 +APIMANS += gnutls_ocsp_resp_get_extension.3 +APIMANS += gnutls_ocsp_resp_get_nonce.3 +APIMANS += gnutls_ocsp_resp_get_signature_algorithm.3 +APIMANS += gnutls_ocsp_resp_get_signature.3 +APIMANS += gnutls_ocsp_resp_get_certs.3 +APIMANS += gnutls_ocsp_resp_verify_direct.3 +APIMANS += gnutls_ocsp_resp_verify.3 APIMANS += gnutls_openpgp_crt_init.3 APIMANS += gnutls_openpgp_crt_deinit.3 APIMANS += gnutls_openpgp_crt_import.3 @@ -746,6 +778,20 @@ doit: echo -n "."; \ done @echo "" + @echo -n "Creating man pages for ocsp.h..." && \ + for i in `$(top_srcdir)/doc/scripts/getfuncs.pl <$(top_srcdir)/lib/includes/gnutls/ocsp.h`; do \ + $(top_srcdir)/doc/scripts/gdoc -man \ + -module $(PACKAGE) -sourceversion $(VERSION) \ + -bugsto $(PACKAGE_BUGREPORT) \ + -pkg-name "$(PACKAGE_NAME)" \ + -include "gnutls/ocsp.h" \ + -seeinfo $(PACKAGE) -verbatimcopying \ + -copyright "2012 Free Software Foundation" \ + -function $$i \ + $(top_srcdir)/lib/*.c $(top_srcdir)/lib/*/*.c > $$i.3 2>/dev/null && \ + echo -n "."; \ + done + @echo "" @echo -n "Creating man pages for abstract.h..." && \ for i in `$(top_srcdir)/doc/scripts/getfuncs.pl <$(top_srcdir)/lib/includes/gnutls/abstract.h`; do \ $(top_srcdir)/doc/scripts/gdoc -man \ |