aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/fetch/methods.rs
diff options
context:
space:
mode:
authorVincent Ricard <magic@magicninja.org>2020-11-04 21:31:02 +0100
committerVincent Ricard <magic@magicninja.org>2020-11-04 21:31:02 +0100
commit9b31533728123aaa2e79b0b92e8b1d263cfc48b3 (patch)
treeac3c13466bc8852c7fddf7918ff07b5726896d3e /components/net/fetch/methods.rs
parentd42fbfb315ae82875c1d8536ba8058271638d85b (diff)
downloadservo-9b31533728123aaa2e79b0b92e8b1d263cfc48b3.tar.gz
servo-9b31533728123aaa2e79b0b92e8b1d263cfc48b3.zip
Update the "bad ports" list
https://github.com/whatwg/fetch/issues/1108
Diffstat (limited to 'components/net/fetch/methods.rs')
-rw-r--r--components/net/fetch/methods.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net/fetch/methods.rs b/components/net/fetch/methods.rs
index a6ae6b4b234..fd76d71ad83 100644
--- a/components/net/fetch/methods.rs
+++ b/components/net/fetch/methods.rs
@@ -953,11 +953,11 @@ fn is_network_scheme(scheme: &str) -> bool {
/// <https://fetch.spec.whatwg.org/#bad-port>
fn is_bad_port(port: u16) -> bool {
- static BAD_PORTS: [u16; 67] = [
+ static BAD_PORTS: [u16; 69] = [
1, 7, 9, 11, 13, 15, 17, 19, 20, 21, 22, 23, 25, 37, 42, 43, 53, 77, 79, 87, 95, 101, 102,
103, 104, 109, 110, 111, 113, 115, 117, 119, 123, 135, 139, 143, 179, 389, 427, 465, 512,
513, 514, 515, 526, 530, 531, 532, 540, 548, 556, 563, 587, 601, 636, 993, 995, 2049, 3659,
- 4045, 6000, 6665, 6666, 6667, 6668, 6669, 6697,
+ 4045, 5060, 5061, 6000, 6665, 6666, 6667, 6668, 6669, 6697,
];
BAD_PORTS.binary_search(&port).is_ok()