diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-08-12 10:04:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-08-12 13:37:08 +0200 |
commit | 1a2df1518ad8653f248e8e9de47f28448d2dc399 (patch) | |
tree | 4e0a2ede1693337571baaaaf014e4d70ee0ec6f8 /include | |
parent | 551806255fb484eff52e36273dbd20c593e19542 (diff) | |
download | curl-1a2df1518ad8653f248e8e9de47f28448d2dc399.tar.gz |
curl_version_info: offer quic (and h3) library info
Closes #4216
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 9429355a9..9131f117d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2762,7 +2762,8 @@ typedef struct { unsigned int nghttp2_ver_num; /* Numeric nghttp2 version (MAJOR << 16) | (MINOR << 8) | PATCH */ const char *nghttp2_version; /* human readable string. */ - + char *quic_version; /* human readable quic (+ HTTP/3) library + + version or NULL */ } curl_version_info_data; #define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */ |