~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Nginx/mail/ngx_mail_ssl_module.h

Version: ~ [ nginx-0.8.20 ] ~ [ nginx-0.7.62 ] ~ [ nginx-0.6.39 ] ~

  1 
  2 /*
  3  * Copyright (C) Igor Sysoev
  4  */
  5 
  6 
  7 #ifndef _NGX_MAIL_SSL_H_INCLUDED_
  8 #define _NGX_MAIL_SSL_H_INCLUDED_
  9 
 10 
 11 #include <ngx_config.h>
 12 #include <ngx_core.h>
 13 #include <ngx_mail.h>
 14 
 15 
 16 #define NGX_MAIL_STARTTLS_OFF   0
 17 #define NGX_MAIL_STARTTLS_ON    1
 18 #define NGX_MAIL_STARTTLS_ONLY  2
 19 
 20 
 21 typedef struct {
 22     ngx_flag_t       enable;
 23     ngx_flag_t       prefer_server_ciphers;
 24 
 25     ngx_ssl_t        ssl;
 26 
 27     ngx_uint_t       starttls;
 28     ngx_uint_t       protocols;
 29 
 30     ssize_t          builtin_session_cache;
 31 
 32     time_t           session_timeout;
 33 
 34     ngx_str_t        certificate;
 35     ngx_str_t        certificate_key;
 36     ngx_str_t        dhparam;
 37 
 38     ngx_str_t        ciphers;
 39 
 40     ngx_shm_zone_t  *shm_zone;
 41 
 42     u_char          *file;
 43     ngx_uint_t       line;
 44 } ngx_mail_ssl_conf_t;
 45 
 46 
 47 extern ngx_module_t  ngx_mail_ssl_module;
 48 
 49 
 50 #endif /* _NGX_MAIL_SSL_H_INCLUDED_ */
 51 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.