diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-10-21 22:47:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-10-23 08:22:38 +0200 |
commit | d31ed6ac719cd3c7c1dcac5f9000b19536087b7e (patch) | |
tree | 8d958eac17766d96e256d77925fd8c222052a681 /include | |
parent | 419d410ca0728ae591af9f58ef2c1f4132b0a21d (diff) |
http2: s/priority/weight
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 5ea3d4ce9..86692bbb7 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1648,8 +1648,8 @@ typedef enum { /* Set the protocol used when curl is given a URL without a protocol */ CINIT(DEFAULT_PROTOCOL, OBJECTPOINT, 238), - /* Set stream priority, 1 - 256 */ - CINIT(STREAM_PRIORITY, LONG, 239), + /* Set stream weight, 1 - 256 (default is 16) */ + CINIT(STREAM_WEIGHT, LONG, 239), /* Set stream dependency on another CURL handle */ CINIT(STREAM_DEPENDS, OBJECTPOINT, 240), |