diff options
author | Daniel Stenberg <daniel@haxx.se> | 2019-05-03 13:18:12 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2019-05-05 15:52:46 +0200 |
commit | 2d0e9b40d3237b1450cbbfbcb996da244d964898 (patch) | |
tree | 79f952f5ede7ce5af423fbd480c8ea3c7df3de6f /include | |
parent | 0eec832603d3a4ba9ae69a16351cf29c37f7fb7c (diff) |
urlapi: add CURLUPART_ZONEID to set and get
The zoneid can be used with IPv6 numerical addresses.
Updated test 1560 to verify.
Closes #3834
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/urlapi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/urlapi.h b/include/curl/urlapi.h index 850faa97a..58e89d85c 100644 --- a/include/curl/urlapi.h +++ b/include/curl/urlapi.h @@ -60,7 +60,8 @@ typedef enum { CURLUPART_PORT, CURLUPART_PATH, CURLUPART_QUERY, - CURLUPART_FRAGMENT + CURLUPART_FRAGMENT, + CURLUPART_ZONEID /* added in 7.65.0 */ } CURLUPart; #define CURLU_DEFAULT_PORT (1<<0) /* return default port number */ |