Changeset 3475e62 in mod_gnutls


Ignore:
Timestamp:
Oct 31, 2016, 6:30:14 PM (6 years ago)
Author:
Thomas Klute <thomas2.klute@…>
Branches:
asyncio, debian/master, debian/stretch-backports, main, master, proxy-ticket, upstream
Children:
b34a67e
Parents:
c39ae1a
Message:

Remove EXPERIMENTAL mark for OCSP from internal documentation

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • include/mod_gnutls.h.in

    rc39ae1a r3475e62  
    211211    apr_time_t last_cache_check;
    212212
    213     /* EXPERIMENTAL: Enable OCSP stapling */
     213    /* Enable OCSP stapling */
    214214    unsigned char ocsp_staple;
    215     /* EXPERIMENTAL: Read OCSP response for stapling from this file
    216      * instead of sending a request over HTTP */
     215    /* Read OCSP response for stapling from this file instead of
     216     * sending a request over HTTP */
    217217    char *ocsp_response_file;
    218218    /* Internal OCSP data for this server */
  • src/mod_gnutls.c

    rc39ae1a r3475e62  
    274274    AP_INIT_FLAG("GnuTLSOCSPStapling", mgs_ocsp_stapling_enable,
    275275                 NULL, RSRC_CONF,
    276                  "EXPERIMENTAL: Enable OCSP stapling"),
     276                 "Enable OCSP stapling"),
    277277    AP_INIT_TAKE1("GnuTLSOCSPResponseFile", mgs_store_ocsp_response_path,
    278278                  NULL, RSRC_CONF,
    279                   "EXPERIMENTAL: Read OCSP response for stapling from this "
    280                   "file instead of sending a request over HTTP (must be "
    281                   "updated externally)"),
     279                  "Read OCSP response for stapling from this file instead "
     280                  "of sending a request over HTTP (must be updated "
     281                  "externally)"),
    282282    AP_INIT_TAKE1("GnuTLSOCSPGraceTime", mgs_set_timeout,
    283283                  NULL, RSRC_CONF,
    284                   "EXPERIMENTAL: Replace cached OCSP responses this many "
    285                   "seconds before they expire"),
     284                  "Replace cached OCSP responses this many seconds before "
     285                  "they expire"),
    286286    AP_INIT_TAKE1("GnuTLSOCSPFailureTimeout", mgs_set_timeout,
    287287                  NULL, RSRC_CONF,
    288                   "EXPERIMENTAL: Wait this many seconds before retrying a "
    289                   "failed OCSP request"),
     288                  "Wait this many seconds before retrying a failed OCSP "
     289                  "request"),
    290290    AP_INIT_TAKE1("GnuTLSOCSPSocketTimeout", mgs_set_timeout,
    291291                  NULL, RSRC_CONF,
    292                   "EXPERIMENTAL: Socket timeout for OCSP requests"),
     292                  "Socket timeout for OCSP requests"),
    293293#ifdef __clang__
    294294    /* Workaround for this clang bug:
Note: See TracChangeset for help on using the changeset viewer.