mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:53:34 +03:00
version: add 'cainfo' and 'capath' to version info struct
Suggested-by: Timothe Litt URL: https://curl.haxx.se/mail/lib-2020-03/0090.html Reviewed-by: Jay Satiro Closes #5150
This commit is contained in:
parent
62112d2bb4
commit
6de756c9b1
4 changed files with 36 additions and 12 deletions
|
|
@ -2729,6 +2729,7 @@ typedef enum {
|
|||
CURLVERSION_FOURTH,
|
||||
CURLVERSION_FIFTH,
|
||||
CURLVERSION_SIXTH,
|
||||
CURLVERSION_SEVENTH,
|
||||
CURLVERSION_LAST /* never actually use this */
|
||||
} CURLversion;
|
||||
|
||||
|
|
@ -2737,7 +2738,7 @@ typedef enum {
|
|||
meant to be a built-in version number for what kind of struct the caller
|
||||
expects. If the struct ever changes, we redefine the NOW to another enum
|
||||
from above. */
|
||||
#define CURLVERSION_NOW CURLVERSION_SIXTH
|
||||
#define CURLVERSION_NOW CURLVERSION_SEVENTH
|
||||
|
||||
typedef struct {
|
||||
CURLversion age; /* age of the returned struct */
|
||||
|
|
@ -2776,6 +2777,13 @@ typedef struct {
|
|||
const char *nghttp2_version; /* human readable string. */
|
||||
const char *quic_version; /* human readable quic (+ HTTP/3) library +
|
||||
version or NULL */
|
||||
|
||||
/* These fields were added in CURLVERSION_SEVENTH */
|
||||
const char *cainfo; /* the built-in default CURLOPT_CAINFO, might
|
||||
be NULL */
|
||||
const char *capath; /* the built-in default CURLOPT_CAPATH, might
|
||||
be NULL */
|
||||
|
||||
} curl_version_info_data;
|
||||
|
||||
#define CURL_VERSION_IPV6 (1<<0) /* IPv6-enabled */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue