Lines Matching defs:authority
163 req.authority =
164 concat_string_ref(balloc, req.authority, StringRef{data, len});
263 // rewrite host header field with authority component.
264 auto authority = util::get_uri_field(uri.c_str(), u, UF_HOST);
266 auto ipv6 = std::find(std::begin(authority), std::end(authority), ':') !=
267 std::end(authority);
268 auto authoritylen = authority.size();
275 if (authoritylen > authority.size()) {
281 p = std::copy(std::begin(authority), std::end(authority), p);
292 req.authority = StringRef{iovec.base, p};
294 req.authority = authority;
307 // Notice that no slash after authority. See
371 << (method == HTTP_CONNECT ? req.authority : req.path) << " "
411 // authority component, also they cause headaches when we put them
453 req.authority = host->value;
1413 req.authority.empty()) {
1418 auto authority = util::extract_host(req.authority);
1419 if (authority.empty()) {
1430 loc = concat_string_ref(balloc, StringRef::from_lit("https://"), authority,
1433 loc = concat_string_ref(balloc, StringRef::from_lit("https://"), authority,