comparison src/event/ngx_event_openssl.c @ 5223:71d85de7b53b

Style: replace SSL *ssl with ngx_ssl_conn_t *ssl_conn. No functional changes. Signed-off-by: Piotr Sikora <piotr@cloudflare.com>
author Piotr Sikora <piotr@cloudflare.com>
date Tue, 21 May 2013 18:45:07 -0700
parents 23a186e8ca45
children f1a91825730a
comparison
equal deleted inserted replaced
5222:23a186e8ca45 5223:71d85de7b53b
515 } 515 }
516 } 516 }
517 517
518 518
519 RSA * 519 RSA *
520 ngx_ssl_rsa512_key_callback(SSL *ssl, int is_export, int key_length) 520 ngx_ssl_rsa512_key_callback(ngx_ssl_conn_t *ssl_conn, int is_export,
521 int key_length)
521 { 522 {
522 static RSA *key; 523 static RSA *key;
523 524
524 if (key_length == 512) { 525 if (key_length == 512) {
525 if (key == NULL) { 526 if (key == NULL) {