mirror of
https://github.com/curl/curl.git
synced 2025-02-05 14:30:10 +08:00
added clarifying comment
This commit is contained in:
parent
38649d1362
commit
a3f958aaaa
@ -794,8 +794,13 @@ struct HandleData {
|
|||||||
this syntax. */
|
this syntax. */
|
||||||
curl_off_t resume_from; /* continue [ftp] transfer from here */
|
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 {
|
union {
|
||||||
struct HTTP *http;
|
struct HTTP *http;
|
||||||
struct HTTP *https; /* alias, just for the sake of being more readable */
|
struct HTTP *https; /* alias, just for the sake of being more readable */
|
||||||
|
Loading…
Reference in New Issue
Block a user