aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/websocket_loader.rs
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2020-05-22 14:27:50 -0400
committerJosh Matthews <josh@joshmatthews.net>2020-05-22 14:51:43 -0400
commit63cdcb847dce6d2abcaf0589218f4b2ccae60efa (patch)
treefb3e04419f315d8582664c827a23ac49039594be /components/net/websocket_loader.rs
parentf6f1648e56c9afddd835097ef8cc0095ec1a69b5 (diff)
downloadservo-63cdcb847dce6d2abcaf0589218f4b2ccae60efa.tar.gz
servo-63cdcb847dce6d2abcaf0589218f4b2ccae60efa.zip
Remove duplicate Host header from initial websocket request.
Diffstat (limited to 'components/net/websocket_loader.rs')
-rw-r--r--components/net/websocket_loader.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/components/net/websocket_loader.rs b/components/net/websocket_loader.rs
index c4a8483837a..69d3c430fcb 100644
--- a/components/net/websocket_loader.rs
+++ b/components/net/websocket_loader.rs
@@ -8,9 +8,7 @@ use crate::fetch::methods::should_be_blocked_due_to_bad_port;
use crate::hosts::replace_host;
use crate::http_loader::HttpState;
use embedder_traits::resources::{self, Resource};
-use headers::Host;
use http::header::{self, HeaderMap, HeaderName, HeaderValue};
-use http::uri::Authority;
use ipc_channel::ipc::{IpcReceiver, IpcSender};
use ipc_channel::router::ROUTER;
use net_traits::request::{RequestBuilder, RequestMode};
@@ -34,7 +32,6 @@ use ws::{Error as WebSocketError, ErrorKind as WebSocketErrorKind, Result as Web
#[derive(Clone)]
struct Client<'a> {
origin: &'a str,
- host: &'a Host,
protocols: &'a [String],
http_state: &'a Arc<HttpState>,
resource_url: &'a ServoUrl,
@@ -60,10 +57,6 @@ impl<'a> Handler for Client<'a> {
let mut req = Request::from_url(url)?;
req.headers_mut()
.push(("Origin".to_string(), self.origin.as_bytes().to_owned()));
- req.headers_mut().push((
- "Host".to_string(),
- format!("{}", self.host).as_bytes().to_owned(),
- ));
for protocol in self.protocols {
req.add_protocol(protocol);
@@ -228,23 +221,8 @@ pub fn init(
let mut net_url = req_builder.url.clone().into_url();
net_url.set_host(Some(&host)).unwrap();
- let host = Host::from(
- format!(
- "{}{}",
- req_builder.url.host_str().unwrap(),
- req_builder
- .url
- .port_or_known_default()
- .map(|v| format!(":{}", v))
- .unwrap_or("".into())
- )
- .parse::<Authority>()
- .unwrap(),
- );
-
let client = Client {
origin: &req_builder.origin.ascii_serialization(),
- host: &host,
protocols: &protocols,
http_state: &http_state,
resource_url: &req_builder.url,