diff options
author | Daniel Stenberg <daniel@haxx.se> | 2023-03-10 09:22:43 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2023-03-10 23:30:34 +0100 |
commit | cb49e67303dbafbab1cebf4086e3ec15b7d56ee5 (patch) | |
tree | 7dfbfe3dd920e735f81261e2a1a60c96ade87160 /lib/urldata.h | |
parent | b725fe1944b45406676ea3aff333ae3085a848d9 (diff) | |
download | curl-cb49e67303dbafbab1cebf4086e3ec15b7d56ee5.tar.gz |
url: only reuse connections with same GSS delegation
Reported-by: Harry Sintonen
Closes #10731
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index bf5daaf50..da5de5ba9 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1061,6 +1061,7 @@ struct connectdata { unsigned char ip_version; /* copied from the Curl_easy at creation time */ unsigned char httpversion; /* the HTTP version*10 reported by the server */ unsigned char connect_only; + unsigned char gssapi_delegation; /* inherited from set.gssapi_delegation */ }; /* The end of connectdata. */ |