mirror of
https://github.com/curl/curl.git
synced 2026-06-10 01:54:15 +03:00
pytest: make earlydata require gnutls 3.6.13
This commit is contained in:
parent
8e47ad71cb
commit
562a2f01c2
1 changed files with 3 additions and 1 deletions
|
|
@ -464,7 +464,9 @@ class Env:
|
|||
|
||||
@staticmethod
|
||||
def curl_can_early_data() -> bool:
|
||||
return Env.curl_uses_any_libs(['gnutls', 'wolfssl', 'quictls', 'openssl'])
|
||||
if Env.curl_uses_lib('gnutls'):
|
||||
return Env.curl_lib_version_at_least('gnutls', '3.6.13')
|
||||
return Env.curl_uses_any_libs(['wolfssl', 'quictls', 'openssl'])
|
||||
|
||||
@staticmethod
|
||||
def curl_can_h3_early_data() -> bool:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue