pub fn extract_request_x_forwarded_proto<B>(
request: &Request<B>,
) -> Result<Option<Vec<String>>, Error>Expand description
Extract untrusted X-Forwarded-Proto tokens from a complete request.
This reads request.headers() and delegates to
extract_header_x_forwarded_proto, preserving its missing, repeated-line,
normalization, and malformed-value behavior. The returned assertions remain
untrusted.