From: Daniel Stenberg Date: Wed, 24 Oct 2007 21:09:59 +0000 (+0000) Subject: added clarifying comment X-Git-Tag: curl-7_17_1~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3f958aaaa3fbf8f3ef4b5dd77c0d0af715d46e1;p=thirdparty%2Fcurl.git added clarifying comment --- diff --git a/lib/urldata.h b/lib/urldata.h index b13ba42f15..310e745002 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 */