Lines Matching defs:host
62 const StringRef &host, const StringRef &proto) {
70 if ((params & FORWARDED_HOST) && !host.empty()) {
71 len += str_size("host=\"") + host.size() + str_size("\";");
84 // in token. ':' is used to separate host and port.
107 if ((params & FORWARDED_HOST) && !host.empty()) {
109 p = util::copy_lit(p, "host=\"");
110 p = std::copy(std::begin(host), std::end(host), p);
235 len += util::quote_stringlen(altsvc.host);
255 p = util::quote_string(p, altsvc.host);