diff options
author | Moonchild <moonchild@palemoon.org> | 2021-07-14 01:51:13 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2021-07-14 01:51:13 +0000 |
commit | 8ea119da4a9d10eead36d724a262171530479afa (patch) | |
tree | f6603d56cd785d11ffa2015a542a5382fc5298ad /netwerk | |
parent | 3003f52e1d154d44e70edb9f7da5ba97e7e4fc65 (diff) | |
download | uxp-8ea119da4a9d10eead36d724a262171530479afa.tar.gz |
[network] Stop blocking 10080
Port 10080 is shared by too many devices and services that do need http(s)
access, so this port should not be blacklisted by default.
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/base/nsIOService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/base/nsIOService.cpp b/netwerk/base/nsIOService.cpp index d04b3cef12..ffe3ab2ace 100644 --- a/netwerk/base/nsIOService.cpp +++ b/netwerk/base/nsIOService.cpp @@ -165,7 +165,7 @@ int16_t gBadPortList[] = { 6667, // Standard IRC [Apple addition] 6668, // Alternate IRC [Apple addition] 6669, // Alternate IRC [Apple addition] - 10080,// Amanda + // 10080,// (Amanda) too many collisions with other services, disabled for now. 0, // Sentinel value: This MUST be zero }; |