~ubuntu-branches/ubuntu/trusty/nginx/trusty-proposed

« back to all changes in this revision

Viewing changes to src/http/modules/ngx_http_ssl_module.h

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2013-04-25 12:51:45 UTC
  • mfrom: (1.3.28)
  • mto: (1.3.29) (15.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: package-import@ubuntu.com-20130425125145-ugl0wor6bq0u5eae
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/*
3
3
 * Copyright (C) Igor Sysoev
 
4
 * Copyright (C) Nginx, Inc.
4
5
 */
5
6
 
6
7
 
22
23
 
23
24
    ngx_uint_t                      protocols;
24
25
 
25
 
    ngx_int_t                       verify;
26
 
    ngx_int_t                       verify_depth;
 
26
    ngx_uint_t                      verify;
 
27
    ngx_uint_t                      verify_depth;
27
28
 
28
29
    ssize_t                         builtin_session_cache;
29
30
 
31
32
 
32
33
    ngx_str_t                       certificate;
33
34
    ngx_str_t                       certificate_key;
 
35
    ngx_str_t                       dhparam;
 
36
    ngx_str_t                       ecdh_curve;
34
37
    ngx_str_t                       client_certificate;
 
38
    ngx_str_t                       trusted_certificate;
 
39
    ngx_str_t                       crl;
35
40
 
36
41
    ngx_str_t                       ciphers;
37
42
 
38
43
    ngx_shm_zone_t                 *shm_zone;
 
44
 
 
45
    ngx_flag_t                      stapling;
 
46
    ngx_flag_t                      stapling_verify;
 
47
    ngx_str_t                       stapling_file;
 
48
    ngx_str_t                       stapling_responder;
 
49
 
 
50
    u_char                         *file;
 
51
    ngx_uint_t                      line;
39
52
} ngx_http_ssl_srv_conf_t;
40
53
 
41
54