![]() |
Home | Libraries | People | FAQ | More |
Return the HTTP-version.
unsigned version() const;
This holds both the major and minor version numbers, using these formulas:
unsigned major = [link beast.ref.boost__beast__http__header.version `version`] / 10; unsigned minor = [link beast.ref.boost__beast__http__header.version `version`] % 10;
Newly constructed headers will use HTTP/1.1 by default.