diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-02-03 12:31:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-02-03 12:31:35 +0000 |
commit | ffae4f6b48cc8d227a41701f8f043bd8549b4ba3 (patch) | |
tree | d41c00960ef881fc76a1583bf2fb22d0ba016107 /lib/urldata.h | |
parent | 454e840590eef557c114b32edb14c113f165272a (diff) | |
download | curl-ffae4f6b48cc8d227a41701f8f043bd8549b4ba3.tar.gz |
- Dmitry Kurochkin cleaned up the pipelining code and removed the need for and
use of the "is_in_pipeline" struct field.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index ec0356dac..505da5500 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -950,7 +950,6 @@ struct connectdata { handle */ bool writechannel_inuse; /* whether the write channel is in use by an easy handle */ - bool is_in_pipeline; /* TRUE if this connection is in a pipeline */ bool server_supports_pipelining; /* TRUE if server supports pipelining, set after first response */ @@ -1135,8 +1134,6 @@ struct UrlState { bytes / second */ bool this_is_a_follow; /* this is a followed Location: request */ - bool is_in_pipeline; /* Indicates whether this handle is part of a pipeline */ - char *first_host; /* if set, this should be the host name that we will sent authorization to, no else. Used to make Location: following not keep sending user+password... This is |