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

origin_form_rule

Rule for origin-form.

Synopsis

Defined in header <boost/url/rfc/origin_form_rule.hpp>

constexpr implementation-defined origin_form_rule;
Description

This appears in the HTTP/1 request-line grammar.

Value Type
using value_type = url_view;
Example

Rules are used with the function grammar::parse.

result< url_view > rv = grammar::parse( "/index.htm?layout=mobile", origin_form_rule );
BNF
origin-form    = absolute-path [ "?" query ]

absolute-path = 1*( "/" segment )
Specification
See Also

grammar::parse, parse_origin_form, url_view.

Convenience header <boost/url.hpp>


PrevUpHomeNext