mirror of
https://github.com/curl/curl.git
synced 2025-09-07 21:05:09 +03:00
connect: drop unused struct member
Follow-up to 283af039c8
#14863
Closes #17908
This commit is contained in:
parent
75395eb003
commit
c6b2d3d911
|
@ -390,7 +390,6 @@ struct eyeballer {
|
||||||
expire_id timeout_id; /* ID for Curl_expire() */
|
expire_id timeout_id; /* ID for Curl_expire() */
|
||||||
CURLcode result;
|
CURLcode result;
|
||||||
int error;
|
int error;
|
||||||
BIT(rewinded); /* if we rewinded the addr list */
|
|
||||||
BIT(has_started); /* attempts have started */
|
BIT(has_started); /* attempts have started */
|
||||||
BIT(is_done); /* out of addresses/time */
|
BIT(is_done); /* out of addresses/time */
|
||||||
BIT(connected); /* cf has connected */
|
BIT(connected); /* cf has connected */
|
||||||
|
@ -474,7 +473,6 @@ static void baller_free(struct eyeballer *baller,
|
||||||
|
|
||||||
static void baller_rewind(struct eyeballer *baller)
|
static void baller_rewind(struct eyeballer *baller)
|
||||||
{
|
{
|
||||||
baller->rewinded = TRUE;
|
|
||||||
baller->addr = baller->first;
|
baller->addr = baller->first;
|
||||||
baller->inconclusive = FALSE;
|
baller->inconclusive = FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user