Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url::set_userinfo

Set the userinfo.

Synopsis
static_url&
set_userinfo(
    core::string_view s);
Description

The userinfo is set to the given string, which may contain percent-escapes. Any special or reserved characters in the string are automatically percent-encoded. The effects on the user and password depend on the presence of a colon (':') in the string:

Remarks

The interpretation of the userinfo as individual user and password components is scheme-dependent. Transmitting passwords in URLs is deprecated.

Example
assert( url( "http://example.com" ).[link url.ref.boost__urls__static_url.set_userinfo `set_userinfo`]( "user:pass" ).[link url.ref.boost__urls__static_url.encoded_user `encoded_user`]() == "user" );
Complexity

Linear in this->size() + s.size().

Exception Safety

Strong guarantee. Calls to allocate may throw.

Parameters

Name

Description

s

The string to set.

BNF
[link url.ref.boost__urls__static_url.userinfo `userinfo`]      = [ [ [link url.ref.boost__urls__static_url.user `user`] ] [ ':' [link url.ref.boost__urls__static_url.password `password`] ] ]

[link url.ref.boost__urls__static_url.user `user`]          = *( unreserved / pct-encoded / sub-delims )
[link url.ref.boost__urls__static_url.password `password`]      = *( unreserved / pct-encoded / sub-delims / ":" )
Specification
See Also

remove_userinfo, /root/project/libs/url/include/boost/url/static_url.hpp


PrevUpHomeNext