lib: update mentions of the legacy "sessionhandle"

It is now "Curl_easy"

Follow-up to 434f8d0389 (June 2016)

Closes #22463
This commit is contained in:
Daniel Stenberg 2026-08-03 00:53:00 +02:00
parent c59b06c99c
commit 54371bca75
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 3 additions and 3 deletions

View file

@ -3130,7 +3130,7 @@ void Curl_multi_will_close(struct Curl_easy *data, curl_socket_t s)
* timeout to use (skip the already expired ones) and add this node back to
* the splay tree again.
*
* The splay tree only has each sessionhandle as a single node and the nearest
* The splay tree only has each Curl_easy as a single node and the nearest
* timeout is used to sort it on.
*/
static CURLMcode add_next_timeout(const struct curltime *pnow,

View file

@ -196,7 +196,7 @@ static void up_free(struct Curl_easy *data)
/*
* This is the internal function curl_easy_cleanup() calls. This should
* cleanup and free all resources associated with this sessionhandle.
* cleanup and free all resources associated with this Curl_easy.
*
* We ignore SIGPIPE when this is called from curl_easy_cleanup.
*/
@ -454,7 +454,7 @@ static void easy_meta_freeentry(void *p)
/**
* Curl_open()
*
* @param curl is a pointer to a sessionhandle pointer that gets set by this
* @param curl is a pointer to a Curl_easy pointer that gets set by this
* function.
* @return CURLcode
*/