mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:01:40 +03:00
cf-https-connect: use timeouts as unsigned ints
To match the type used in 'set.happy_eyeballs_timeout'. Ref: #13489 Closes #13503
This commit is contained in:
parent
cc907e80a2
commit
3583ed8b77
1 changed files with 2 additions and 2 deletions
|
|
@ -102,8 +102,8 @@ struct cf_hc_ctx {
|
|||
CURLcode result; /* overall result */
|
||||
struct cf_hc_baller h3_baller;
|
||||
struct cf_hc_baller h21_baller;
|
||||
int soft_eyeballs_timeout_ms;
|
||||
int hard_eyeballs_timeout_ms;
|
||||
unsigned int soft_eyeballs_timeout_ms;
|
||||
unsigned int hard_eyeballs_timeout_ms;
|
||||
};
|
||||
|
||||
static void cf_hc_baller_init(struct cf_hc_baller *b,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue