Changeset cf2b905 in mod_gnutls for include


Ignore:
Timestamp:
Nov 16, 2013, 2:46:50 AM (9 years ago)
Author:
Daniel Kahn Gillmor <dkg@…>
Branches:
asyncio, debian/master, debian/stretch-backports, jessie-backports, main, master, proxy-ticket, upstream
Children:
e3cbda4
Parents:
fa45dcb
git-author:
Daniel Kahn Gillmor <dkg@…> (01/30/13 01:40:35)
git-committer:
Daniel Kahn Gillmor <dkg@…> (11/16/13 02:46:50)
Message:

MSVA: document and parse GnuTLSClientVerifyMethod directive

The directive currently doesn't do anything, but this commit makes it
a legal and parseable directive.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/mod_gnutls.h.in

    rfa45dcb rcf2b905  
    8181    mgs_cache_unset
    8282} mgs_cache_e;
     83
     84typedef enum {
     85    mgs_cvm_unset,
     86    mgs_cvm_cartel,
     87    mgs_cvm_msva
     88} mgs_client_verification_method_e;
     89
    8390
    8491/* Directory Configuration Record */
     
    140147        /* Client Certificate Verification Mode */
    141148    int client_verify_mode;
     149        /* Client Certificate Verification Method */
     150    mgs_client_verification_method_e client_verify_method;
    142151        /* Last Cache timestamp */
    143152    apr_time_t last_cache_check;
     
    340349                                  const char *arg);
    341350
     351const char *mgs_set_client_verify_method(cmd_parms * parms, void *dummy,
     352                                         const char *arg);
     353
    342354const char *mgs_set_client_ca_file(cmd_parms * parms, void *dummy,
    343355                                   const char *arg);
Note: See TracChangeset for help on using the changeset viewer.