aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-10-24 21:09:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-10-24 21:09:59 +0000
commita3f958aaaa3fbf8f3ef4b5dd77c0d0af715d46e1 (patch)
treeb106f1d74827959984cbfcca9426871d2029d6aa /lib/urldata.h
parent38649d1362d233dace774a6738f9009c067b1bab (diff)
added clarifying comment
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index b13ba42f1..310e74500 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -794,8 +794,13 @@ struct HandleData {
this syntax. */
curl_off_t resume_from; /* continue [ftp] transfer from here */
- /* Protocol specific data */
-
+ /* Protocol specific data.
+ *
+ *************************************************************************
+ * Note that this data will be REMOVED after each request, so anything that
+ * should be kept/stored on a per-connection basis and thus live for the
+ * next requst on the same connection MUST be put in the connectdata struct!
+ *************************************************************************/
union {
struct HTTP *http;
struct HTTP *https; /* alias, just for the sake of being more readable */