aboutsummaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2015-10-21 22:47:24 +0200
committerDaniel Stenberg <daniel@haxx.se>2015-10-23 08:22:38 +0200
commitd31ed6ac719cd3c7c1dcac5f9000b19536087b7e (patch)
tree8d958eac17766d96e256d77925fd8c222052a681 /lib/http2.c
parent419d410ca0728ae591af9f58ef2c1f4132b0a21d (diff)
http2: s/priority/weight
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 87d4a19ec..261e7f98d 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -52,7 +52,7 @@
*/
void Curl_http2_init_state(struct UrlState *state)
{
- state->stream_prio = NGHTTP2_DEFAULT_WEIGHT;
+ state->stream_weight = NGHTTP2_DEFAULT_WEIGHT;
}
/*
@@ -61,7 +61,7 @@ void Curl_http2_init_state(struct UrlState *state)
*/
void Curl_http2_init_userset(struct UserDefined *set)
{
- set->stream_prio = NGHTTP2_DEFAULT_WEIGHT;
+ set->stream_weight = NGHTTP2_DEFAULT_WEIGHT;
}
static int http2_perform_getsock(const struct connectdata *conn,
@@ -1013,9 +1013,9 @@ static void h2_pri_spec(struct SessionHandle *data,
struct HTTP *depstream = (data->set.stream_depends_on?
data->set.stream_depends_on->req.protop:NULL);
int32_t depstream_id = depstream? depstream->stream_id:0;
- nghttp2_priority_spec_init(pri_spec, depstream_id, data->set.stream_prio,
+ nghttp2_priority_spec_init(pri_spec, depstream_id, data->set.stream_weight,
data->set.stream_depends_e);
- data->state.stream_prio = data->set.stream_prio;
+ data->state.stream_weight = data->set.stream_weight;
data->state.stream_depends_e = data->set.stream_depends_e;
data->state.stream_depends_on = data->set.stream_depends_on;
}
@@ -1029,7 +1029,7 @@ static int h2_session_send(struct SessionHandle *data,
nghttp2_session *h2)
{
struct HTTP *stream = data->req.protop;
- if((data->set.stream_prio != data->state.stream_prio) ||
+ if((data->set.stream_weight != data->state.stream_weight) ||
(data->set.stream_depends_e != data->state.stream_depends_e) ||
(data->set.stream_depends_on != data->state.stream_depends_on) ) {
/* send new weight and/or dependency */