Groonga 3.0.9 Source Code Document
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Data Structures | Functions | Variables
ngx_event_openssl.c File Reference
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_event.h>
Include dependency graph for ngx_event_openssl.c:

Go to the source code of this file.

Data Structures

struct  ngx_openssl_conf_t

Functions

ngx_int_t ngx_ssl_session_cache_init (ngx_shm_zone_t *shm_zone, void *data)
ngx_int_t ngx_ssl_init (ngx_log_t *log)
ngx_int_t ngx_ssl_create (ngx_ssl_t *ssl, ngx_uint_t protocols, void *data)
ngx_int_t ngx_ssl_certificate (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *cert, ngx_str_t *key)
ngx_int_t ngx_ssl_client_certificate (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *cert, ngx_int_t depth)
ngx_int_t ngx_ssl_trusted_certificate (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *cert, ngx_int_t depth)
ngx_int_t ngx_ssl_crl (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *crl)
RSA * ngx_ssl_rsa512_key_callback (SSL *ssl, int is_export, int key_length)
ngx_int_t ngx_ssl_dhparam (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *file)
ngx_int_t ngx_ssl_ecdh_curve (ngx_conf_t *cf, ngx_ssl_t *ssl, ngx_str_t *name)
ngx_int_t ngx_ssl_create_connection (ngx_ssl_t *ssl, ngx_connection_t *c, ngx_uint_t flags)
ngx_int_t ngx_ssl_set_session (ngx_connection_t *c, ngx_ssl_session_t *session)
ngx_int_t ngx_ssl_handshake (ngx_connection_t *c)
ssize_t ngx_ssl_recv_chain (ngx_connection_t *c, ngx_chain_t *cl)
ssize_t ngx_ssl_recv (ngx_connection_t *c, u_char *buf, size_t size)
ngx_chain_tngx_ssl_send_chain (ngx_connection_t *c, ngx_chain_t *in, off_t limit)
ssize_t ngx_ssl_write (ngx_connection_t *c, u_char *data, size_t size)
void ngx_ssl_free_buffer (ngx_connection_t *c)
ngx_int_t ngx_ssl_shutdown (ngx_connection_t *c)
void ngx_cdecl ngx_ssl_error (ngx_uint_t level, ngx_log_t *log, ngx_err_t err, char *fmt,...)
ngx_int_t ngx_ssl_session_cache (ngx_ssl_t *ssl, ngx_str_t *sess_ctx, ssize_t builtin_session_cache, ngx_shm_zone_t *shm_zone, time_t timeout)
void ngx_ssl_remove_cached_session (SSL_CTX *ssl, ngx_ssl_session_t *sess)
void ngx_ssl_cleanup_ctx (void *data)
ngx_int_t ngx_ssl_get_protocol (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_cipher_name (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_session_id (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_raw_certificate (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_certificate (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_subject_dn (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_issuer_dn (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_serial_number (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)
ngx_int_t ngx_ssl_get_client_verify (ngx_connection_t *c, ngx_pool_t *pool, ngx_str_t *s)

Variables

ngx_module_t ngx_openssl_module
int ngx_ssl_connection_index
int ngx_ssl_server_conf_index
int ngx_ssl_session_cache_index
int ngx_ssl_certificate_index
int ngx_ssl_stapling_index

Function Documentation

ngx_int_t ngx_ssl_certificate ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t cert,
ngx_str_t key 
)

Definition at line 236 of file ngx_event_openssl.c.

Here is the call graph for this function:

void ngx_ssl_cleanup_ctx ( void *  data)

Definition at line 2199 of file ngx_event_openssl.c.

ngx_int_t ngx_ssl_client_certificate ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t cert,
ngx_int_t  depth 
)

Definition at line 340 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_create ( ngx_ssl_t ssl,
ngx_uint_t  protocols,
void *  data 
)

Definition at line 163 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_create_connection ( ngx_ssl_t ssl,
ngx_connection_t c,
ngx_uint_t  flags 
)

Definition at line 659 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_crl ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t crl 
)

Definition at line 415 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_dhparam ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t file 
)

Definition at line 535 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_ecdh_curve ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t name 
)

Definition at line 618 of file ngx_event_openssl.c.

Here is the call graph for this function:

void ngx_cdecl ngx_ssl_error ( ngx_uint_t  level,
ngx_log_t log,
ngx_err_t  err,
char *  fmt,
  ... 
)

Definition at line 1605 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

void ngx_ssl_free_buffer ( ngx_connection_t c)

Definition at line 1359 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_get_certificate ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2308 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_get_cipher_name ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2216 of file ngx_event_openssl.c.

ngx_int_t ngx_ssl_get_client_verify ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2475 of file ngx_event_openssl.c.

ngx_int_t ngx_ssl_get_issuer_dn ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2394 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_get_protocol ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2208 of file ngx_event_openssl.c.

ngx_int_t ngx_ssl_get_raw_certificate ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2258 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

ngx_int_t ngx_ssl_get_serial_number ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2436 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_get_session_id ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2224 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_get_subject_dn ( ngx_connection_t c,
ngx_pool_t pool,
ngx_str_t s 
)

Definition at line 2352 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_handshake ( ngx_connection_t c)

Definition at line 715 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_init ( ngx_log_t log)

Definition at line 90 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

ssize_t ngx_ssl_recv ( ngx_connection_t c,
u_char *  buf,
size_t  size 
)

Definition at line 927 of file ngx_event_openssl.c.

Here is the caller graph for this function:

ssize_t ngx_ssl_recv_chain ( ngx_connection_t c,
ngx_chain_t cl 
)

Definition at line 879 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

void ngx_ssl_remove_cached_session ( SSL_CTX *  ssl,
ngx_ssl_session_t sess 
)

Definition at line 2030 of file ngx_event_openssl.c.

Here is the caller graph for this function:

RSA* ngx_ssl_rsa512_key_callback ( SSL *  ssl,
int  is_export,
int  key_length 
)

Definition at line 520 of file ngx_event_openssl.c.

ngx_chain_t* ngx_ssl_send_chain ( ngx_connection_t c,
ngx_chain_t in,
off_t  limit 
)

Definition at line 1114 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

ngx_int_t ngx_ssl_session_cache ( ngx_ssl_t ssl,
ngx_str_t sess_ctx,
ssize_t  builtin_session_cache,
ngx_shm_zone_t shm_zone,
time_t  timeout 
)

Definition at line 1657 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_session_cache_init ( ngx_shm_zone_t shm_zone,
void *  data 
)

Definition at line 1728 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_set_session ( ngx_connection_t c,
ngx_ssl_session_t session 
)

Definition at line 701 of file ngx_event_openssl.c.

Here is the call graph for this function:

ngx_int_t ngx_ssl_shutdown ( ngx_connection_t c)

Definition at line 1370 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

ngx_int_t ngx_ssl_trusted_certificate ( ngx_conf_t cf,
ngx_ssl_t ssl,
ngx_str_t cert,
ngx_int_t  depth 
)

Definition at line 388 of file ngx_event_openssl.c.

Here is the call graph for this function:

ssize_t ngx_ssl_write ( ngx_connection_t c,
u_char *  data,
size_t  size 
)

Definition at line 1271 of file ngx_event_openssl.c.

Here is the call graph for this function:

Here is the caller graph for this function:

Variable Documentation

ngx_module_t ngx_openssl_module
Initial value:
{
&ngx_openssl_module_ctx,
ngx_openssl_commands,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
ngx_openssl_exit,
}

Definition at line 66 of file ngx_event_openssl.c.

int ngx_ssl_certificate_index

Definition at line 85 of file ngx_event_openssl.c.

int ngx_ssl_connection_index

Definition at line 82 of file ngx_event_openssl.c.

int ngx_ssl_server_conf_index

Definition at line 83 of file ngx_event_openssl.c.

int ngx_ssl_session_cache_index

Definition at line 84 of file ngx_event_openssl.c.

int ngx_ssl_stapling_index

Definition at line 86 of file ngx_event_openssl.c.