Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
http::header::version (1 of 2 overloads)

Return the HTTP-version.

Synopsis
unsigned
version() const;
Description

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.


PrevUpHomeNext