1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

move c->notes.ssl::flag::{unclean,accurate}-shutdown to SSLConnRec.shutdown_type

PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92100 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Doug MacEachern
2001-11-21 19:22:46 +00:00
parent d65e77c2d6
commit f4792b5423
2 changed files with 27 additions and 20 deletions

View File

@@ -450,9 +450,16 @@ typedef struct {
apr_bucket_brigade *b; /* decrypted input */
} SSLFilterRec;
typedef enum {
SSL_SHUTDOWN_TYPE_STANDARD,
SSL_SHUTDOWN_TYPE_UNCLEAN,
SSL_SHUTDOWN_TYPE_ACCURATE
} ssl_shutdown_type_e;
typedef struct {
SSL *ssl;
const char *client_dn;
ssl_shutdown_type_e shutdown_type;
} SSLConnRec;
typedef struct {