diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2015-10-08 09:26:03 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2015-10-08 09:26:03 -0400 |
commit | f388b2a11503c04e1b49047fd6e35d0f49e00b0b (patch) | |
tree | 52f48e4796fc36124255d231d945a08d542a9d80 /WWW/Library/Implementation/tidy_tls.h | |
parent | 9d9f993bb460439786136fab2ac9465e72fc31da (diff) | |
download | lynx-snapshots-f388b2a11503c04e1b49047fd6e35d0f49e00b0b.tar.gz |
snapshot of project "lynx", label v2-8-9dev_6h
Diffstat (limited to 'WWW/Library/Implementation/tidy_tls.h')
-rw-r--r-- | WWW/Library/Implementation/tidy_tls.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/tidy_tls.h b/WWW/Library/Implementation/tidy_tls.h index 631e8a2a..1674c81b 100644 --- a/WWW/Library/Implementation/tidy_tls.h +++ b/WWW/Library/Implementation/tidy_tls.h @@ -1,5 +1,5 @@ /* - * $LynxId: tidy_tls.h,v 1.6 2015/09/02 01:16:04 tom Exp $ + * $LynxId: tidy_tls.h,v 1.7 2015/10/08 08:51:26 Simon.Kainz Exp $ * Copyright 2008-2013,2015 Thomas E. Dickey */ #ifndef TIDY_TLS_H @@ -78,6 +78,11 @@ typedef struct _SSL_CTX { int (*verify_callback) (int, X509_STORE_CTX *); int verify_mode; + char *client_certfile; + int client_certfile_type; + char *client_keyfile; + int client_keyfile_type; + } SSL_CTX; struct _SSL { |