summaryrefslogtreecommitdiffhomepage
path: root/src/conns.h
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.h
parente9cfd1f82e720be1854b0f72d4e6f041fe991dee (diff)
Removed some of the members of the structures and renamed a few others.
Diffstat (limited to 'src/conns.h')
-rw-r--r--src/conns.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/conns.h b/src/conns.h
index 3b9a7d8..e29b76b 100644
--- a/src/conns.h
+++ b/src/conns.h
@@ -1,4 +1,4 @@
-/* $Id: conns.h,v 1.4 2001-11-21 01:00:09 rjkaes Exp $
+/* $Id: conns.h,v 1.5 2001-11-25 22:06:20 rjkaes Exp $
*
* See 'conns.c' for a detailed description.
*
@@ -18,21 +18,27 @@
#ifndef TINYPROXY_CONNS_H
#define TINYPROXY_CONNS_H
+#include "tinyproxy.h"
+
/*
* Connection Definition
*/
struct conn_s {
int client_fd;
int server_fd;
+
struct buffer_s *cbuffer;
struct buffer_s *sbuffer;
- bool_t simple_req;
- bool_t ssl;
- bool_t upstream;
- bool_t send_message;
+
+ bool_t connect_method;
+ bool_t send_response_message;
+
+ /*
+ * Store the incoming request's HTTP protocol.
+ */
struct {
- unsigned short int major;
- unsigned short int minor;
+ unsigned int major;
+ unsigned int minor;
} protocol;
};