view src/http/modules/ngx_http_ssl_filter.h @ 386:fa72605e7089

nginx-0.0.7-2004-07-12-01:03:47 import
author Igor Sysoev <igor@sysoev.ru>
date Sun, 11 Jul 2004 21:03:47 +0000
parents e7054aaedf68
children b670db10cbbd
line wrap: on
line source

#ifndef _NGX_HTTP_SSL_FILTER_H_INCLUDED_
#define _NGX_HTTP_SSL_FILTER_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>

#include <openssl/ssl.h>


#define NGX_SSL_ERROR         -10
#define NGX_SSL_HTTP_ERROR    -11


ngx_int_t ngx_http_ssl_read(ngx_http_request_t *r, u_char *buf, size_t n);
void ngx_http_ssl_close_connection(SSL *ssl, ngx_log_t *log);


#endif /* _NGX_HTTP_SSL_FILTER_H_INCLUDED_ */