What does `* Mark bundle as not supporting multiuse` mean in my curl trace?

Martijn Burger

When I do a curl -v to some docker container that I created, I get:

* Mark bundle as not supporting multiuse

What does it mean? Where is it documented?

Mark Wagner

From https://github.com/curl/curl/blob/master/lib/http.c#L3611 :

if(conn->httpversion < 20) {
   conn->bundle->multiuse = BUNDLE_NO_MULTIUSE;
   infof(data, "Mark bundle as not supporting multiuse\n");
}

It is a feature of HTTP/2. See, e.g., https://www.cloudflare.com/website-optimization/http2/what-is-http2/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What does the red exclamation mark in my layout file mean?

From Dev

What does the red exclamation mark in my layout file mean?

From Dev

What does "supporting 3 independent screens" mean?

From Dev

What does question mark mean?

From Dev

What does %-mark mean in Clojure?

From Dev

What does "eliminated" mean in a Java stack trace?

From Dev

What does a slash mean in a Java stack trace?

From Dev

What does 'modules linked in' mean in call trace?

From Dev

What does question mark equals mean in CoffeeScript?

From Dev

What does this question mark mean in Flow: "?() => void"

From Java

What does an exclamation mark mean in the Swift language?

From Dev

What does the question mark in "Decimal?" mean?

From Dev

XML what does that question mark mean

From Dev

What does the triple question mark mean in scala?

From Dev

What does the exclamation mark mean for a swift initializer?

From Dev

What does the question mark in java mean?

From Dev

What does this exclamation mark mean in Javascript?

From Dev

What does .php question mark = mean?

From Dev

What does the question mark in terminal command mean?

From Dev

What does the "?" (question mark) mean in javascript?

From Dev

What does this two question mark mean?

From Dev

What does the question mark in terminal command mean?

From Dev

What does an exclamation mark mean in diff output?

From Dev

What does the exclamation mark mean in udev rule?

From Dev

What does hypothesis with operator with question mark mean

From Dev

what does `curl -e` or `curl --referer` mean?

From Dev

what does `curl -e` or `curl --referer` mean?

From Java

What does bundle exec rake mean?

From Dev

What does "Document is distributed as a bundle" mean?

Related Related

HotTag

Archive