Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTPbis - what does bis mean?

I've often seen "bis" appended to versions of protocols (eg v.34bis or httpbis).

What does "bis" mean or stand for?

A telecom engineer I know thinks it might be French in origin.

like image 376
J. Polfer Avatar asked Feb 02 '12 00:02

J. Polfer


People also ask

Whats does BIS mean?

1 : again —used in music as a direction to repeat. 2 : twice.

What does BIS stand for Poe?

BiS. Best in Slot or Best in Socket.

What is BIS in video games?

Best in slot (also "best-in-slot"; usually shortened to "BiS") is a term meant to describe the very best item, enchant and/or gem available to a character for a specific slot.


1 Answers

As others have already said, "bis" comes from "twice" or "repeat". It's used to indicate a second variant of something (although usually with only minor variations that don't warrant a new name).

In the context of HTTP, HTTPbis is the name of the working group in charge of refining HTTP. According to its charter:

HTTP is one of the most successful and widely-used protocols on the Internet today. However, its specification has several editorial issues. Additionally, after years of implementation and extension, several ambiguities have become evident, impairing interoperability and the ability to easily implement and use HTTP.

The working group will refine RFC2616 to:

  • Incorporate errata and updates (e.g., references, IANA registries, ABNF)
  • Fix editorial problems which have led to misunderstandings of the specification
  • Clarify conformance requirements
  • Remove known ambiguities where they affect interoperability
  • Clarify existing methods of extensibility
  • Remove or deprecate those features that are not widely implemented and also unduly affect interoperability
  • Where necessary, add implementation advice
  • Document the security properties of HTTP and its associated mechanisms (e.g., Basic and Digest authentication, cookies, TLS) for common applications

It will also incorporate the generic authentication framework from RFC 2617, without obsoleting or updating that specification's definition of the Basic and Digest schemes.

Finally, it will incorporate relevant portions of RFC 2817 (in particular, the CONNECT method and advice on the use of Upgrade), so that that specification can be moved to Historic status.

In doing so, it should consider:

  • Implementer experience
  • Demonstrated use of HTTP
  • Impact on existing implementations and deployments

The Working Group must not introduce a new version of HTTP and should not add new functionality to HTTP. The WG is not tasked with producing new methods, headers, or extension mechanisms, but may introduce new protocol elements if necessary as part of revising existing functionality which has proven to be problematic.

The last paragraph (emphasis mine) explains why they've used "bis" in this context, since they explicitly don't want a new version.

like image 137
Bruno Avatar answered Nov 05 '22 01:11

Bruno