summaryrefslogtreecommitdiffstats
path: root/netwerk
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-06 19:47:29 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-06 19:47:29 -0500
commit6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c (patch)
treef5e4fdfaa9be98d15ee7e5e0d8265ed461dfd55f /netwerk
parent5483f807c2663be8c63caf8d59ee151b3ef499d3 (diff)
downloadUXP-6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c.tar
UXP-6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c.tar.gz
UXP-6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c.tar.lz
UXP-6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c.tar.xz
UXP-6da9e3c6b9aa7e0be236a6f5c4f9498c25a08c3c.zip
Issue #1395 - Remove FlyWeb Service
Diffstat (limited to 'netwerk')
-rw-r--r--netwerk/base/nsSocketTransportService2.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/netwerk/base/nsSocketTransportService2.cpp b/netwerk/base/nsSocketTransportService2.cpp
index af5742564..4a8d80eed 100644
--- a/netwerk/base/nsSocketTransportService2.cpp
+++ b/netwerk/base/nsSocketTransportService2.cpp
@@ -25,7 +25,6 @@
#include "nsThreadUtils.h"
#include "nsIFile.h"
#include "nsIWidget.h"
-#include "mozilla/dom/FlyWebService.h"
namespace mozilla {
namespace net {
@@ -681,20 +680,6 @@ nsSocketTransportService::CreateRoutedTransport(const char **types,
nsIProxyInfo *proxyInfo,
nsISocketTransport **result)
{
- // Check FlyWeb table for host mappings. If one exists, then use that.
- RefPtr<mozilla::dom::FlyWebService> fws =
- mozilla::dom::FlyWebService::GetExisting();
- if (fws) {
- nsresult rv = fws->CreateTransportForHost(types, typeCount, host, port,
- hostRoute, portRoute,
- proxyInfo, result);
- NS_ENSURE_SUCCESS(rv, rv);
-
- if (*result) {
- return NS_OK;
- }
- }
-
NS_ENSURE_TRUE(mInitialized, NS_ERROR_NOT_INITIALIZED);
NS_ENSURE_TRUE(port >= 0 && port <= 0xFFFF, NS_ERROR_ILLEGAL_VALUE);