summaryrefslogtreecommitdiffhomepage
path: root/src/conns.c
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 22:06:20 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-11-25 22:06:20 +0000
commit5e17d0736e2dcfee570bdc0f359cd116d2b6ee48 (patch)
treea7ccaaf1a39adf1e8658eabdee26f30cbf681af6 /src/conns.c
parente9cfd1f82e720be1854b0f72d4e6f041fe991dee (diff)
Removed some of the members of the structures and renamed a few others.
Diffstat (limited to 'src/conns.c')
-rw-r--r--src/conns.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/conns.c b/src/conns.c
index d47701c..e0881ed 100644
--- a/src/conns.c
+++ b/src/conns.c
@@ -1,4 +1,4 @@
-/* $Id: conns.c,v 1.5 2001-11-22 00:31:10 rjkaes Exp $
+/* $Id: conns.c,v 1.6 2001-11-25 22:06:20 rjkaes Exp $
*
* Create and free the connection structure. One day there could be
* other connnection related tasks put here, but for now the header
@@ -32,11 +32,8 @@ initialize_conn(struct conn_s *connptr)
connptr->cbuffer = new_buffer();
connptr->sbuffer = new_buffer();
- connptr->send_message = FALSE;
- connptr->simple_req = FALSE;
-
- connptr->ssl = FALSE;
- connptr->upstream = FALSE;
+ connptr->send_response_message = FALSE;
+ connptr->connect_method = FALSE;
connptr->protocol.major = connptr->protocol.minor = 0;