aboutsummaryrefslogtreecommitdiff
path: root/src/http_Request.h
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-21 09:31:12 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-09-21 09:31:12 +0000
commit1332446b87c6822bbc1ffdc0db2fb3e409749203 (patch)
tree09e6f97410704c02c2ea1d0726f90c8f7de3180c /src/http_Request.h
parentdb8e32396434e839819e65add9747f4038b7bcbf (diff)
Reworked the socket layer a bit to detect errors when writing to a socket and
take appropriate action. Now it marks the socket closed on most errors, waits till it can write if the buffer is full, or splits the message up if the message was too big for the socket. Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@72 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/http_Request.h')
-rw-r--r--src/http_Request.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/http_Request.h b/src/http_Request.h
index 4e1d370..741af4c 100644
--- a/src/http_Request.h
+++ b/src/http_Request.h
@@ -44,8 +44,8 @@ typedef struct
/* These are all private members of this structure */
- /* The file descriptor */
- int filedes;
+ /* The connection data */
+ void *connection;
/* The request header lines */
uHash *headers;