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 a snapshot of the develop branch, built from commit adcd4c09f0.
PrevUpHomeNext
static_url_base::set_port

(Inherited from url_base)

Set the port.

Synopsis
url_base&
set_port(
    core::string_view s);
Description

This port is set to the string, which must contain only digits or be empty. An empty port string is distinct from having no port.

Example
assert( url( "http://www.example.com" ).set_port( "8080" ).authority().buffer() == "www.example.com:8080" );
Postconditions
this->has_port() == true && this->port_number() == n && this->port() == std::to_string(n)
Exception Safety

Strong guarantee. Calls to allocate may throw. Exceptions thrown on invalid input.

Exceptions

Type

Thrown On

system_error

s does not contain a valid port.

Parameters

Name

Description

s

The port string to set.

BNF
port          = *DIGIT
Specification
See Also

remove_port, set_port.


PrevUpHomeNext