Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
http::message::target (2 of 2 overloads)

(Inherited from http::header)

Set the request-target string.

Synopsis
void
target(
    string_view s);
Description

It is the caller's responsibility to ensure that the request target string follows the syntax rules for URIs used with HTTP. In particular, reserved or special characters must be url-encoded. The implementation does not perform syntax checking on the passed string.

Parameters

Name

Description

s

A string representing the request-target.

Remarks

This function is only available when isRequest == true.


PrevUpHomeNext