This commit is contained in:
Daniel Stenberg 2007-10-24 21:09:59 +00:00
Родитель 38649d1362
Коммит a3f958aaaa
1 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -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 */