Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
http::message::version (1 of 2 overloads)

(Inherited from http::header)

Return the HTTP-version.

Synopsis
unsigned
version() const;
Description

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.


PrevUpHomeNext