~ubuntu-branches/debian/squeeze/nginx/squeeze

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-05-31 18:38:56 UTC
  • mfrom: (1.1.10 upstream) (4.1.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20090531183856-3xhvf6wd0bw5556i
Tags: 0.7.59-1
* New upstream release, first in Debian for the 0.7 branch. Among other
  issues, it also fixes the problem with wildcard dns names used with SSL.
  (Closes: #515904)
* debian/watch: updated.
* debian/postinst: fixed a bashism. (Closes: #507913)
* debian/conf/nginx.conf: removed default_type. (Closes: #509390)
* debian/control: updated Standards-Version to 3.8.1, no changes needed.
* debian/NEWS.Debian: documented the issues with
  server_names_hash_bucket_size. (Closes: #524785)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
    ngx_uint_t                      protocols;
24
24
 
25
 
    ngx_int_t                       verify;
26
 
    ngx_int_t                       verify_depth;
 
25
    ngx_uint_t                      verify;
 
26
    ngx_uint_t                      verify_depth;
27
27
 
28
28
    ssize_t                         builtin_session_cache;
29
29
 
31
31
 
32
32
    ngx_str_t                       certificate;
33
33
    ngx_str_t                       certificate_key;
 
34
    ngx_str_t                       dhparam;
34
35
    ngx_str_t                       client_certificate;
35
36
 
36
37
    ngx_str_t                       ciphers;
37
38
 
38
39
    ngx_shm_zone_t                 *shm_zone;
 
40
 
 
41
    u_char                         *file;
 
42
    ngx_uint_t                      line;
39
43
} ngx_http_ssl_srv_conf_t;
40
44
 
41
45