diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-14 04:56:58 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-14 04:56:58 +0000 |
commit | 7bfb5527ff814551d05990fac7d115645b98cae1 (patch) | |
tree | 53798ab79394cd42f1be5c0913d9f7ce1034dbc7 | |
parent | c6d2e0f7ffa7396b39118241d755a002b997ea9f (diff) | |
download | tinyproxy-7bfb5527ff814551d05990fac7d115645b98cae1.tar.gz tinyproxy-7bfb5527ff814551d05990fac7d115645b98cae1.zip |
Include the SSL field in the connection structure since we're going to
handle SSL connections.
Diffstat (limited to '')
-rw-r--r-- | src/tinyproxy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tinyproxy.h b/src/tinyproxy.h index ebae8cc..418a463 100644 --- a/src/tinyproxy.h +++ b/src/tinyproxy.h @@ -1,4 +1,4 @@ -/* $Id: tinyproxy.h,v 1.14 2001-09-08 18:58:37 rjkaes Exp $ +/* $Id: tinyproxy.h,v 1.15 2001-09-14 04:56:58 rjkaes Exp $ * * See 'tinyproxy.c' for a detailed description. * @@ -113,6 +113,7 @@ struct conn_s { int client_fd, server_fd; struct buffer_s *cbuffer, *sbuffer; bool_t simple_req; + bool_t ssl; char *output_message; }; |