...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
(Inherited from http::header
)
Return the HTTP-version.
unsigned version() const;
This holds both the major and minor version numbers, using these formulas:
unsigned major = version / 10; unsigned minor = version % 10;
Newly constructed headers will use HTTP/1.1 by default.