urldata: move the 'internal' boolean to the state struct

... where all the other state bits for the easy handles live.

Closes #12165
This commit is contained in:
Daniel Stenberg 2023-10-20 11:33:08 +02:00
parent b0bee93dfe
commit fc077bc786
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 7 additions and 8 deletions

View file

@ -3770,7 +3770,7 @@ struct Curl_easy **curl_multi_get_handles(struct Curl_multi *multi)
struct Curl_easy *e = multi->easyp;
while(e) {
DEBUGASSERT(i < multi->num_easy);
if(!e->internal)
if(!e->state.internal)
a[i++] = e;
e = e->next;
}