...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Set the HTTP-version.
void version( unsigned value);
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.
Name |
Description |
---|---|
|
The version number to use |