Return the authority
<include/boost/url/url_view_base.hpp>
authority_view
authority() const noexcept;
This function returns the authority as an authority_view .
authority_view a = url_view( "https://www.example.com:8080/index.htm" ).authority();
authority = [ userinfo "@" ] host [ ":" port ]