Issue #80 - De-unify netwerk/protocol/ftp

This commit is contained in:
Moonchild 2020-05-18 06:00:43 +00:00 committed by Roy Tam
commit f0b717678c
3 changed files with 5 additions and 1 deletions

View file

@ -20,7 +20,7 @@ EXPORTS.mozilla.net += [
'FTPChannelParent.h',
]
UNIFIED_SOURCES += [
SOURCES += [
'FTPChannelChild.cpp',
'FTPChannelParent.cpp',
'nsFTPChannel.cpp',

View file

@ -14,6 +14,9 @@ using namespace mozilla;
using namespace mozilla::net;
extern LazyLogModule gFTPLog;
#undef LOG
#define LOG(args) MOZ_LOG(gFTPLog, mozilla::LogLevel::Debug, args)
// There are two transport connections established for an
// ftp connection. One is used for the command channel , and
// the other for the data channel. The command channel is the first

View file

@ -18,6 +18,7 @@
#include "nsIProxyInfo.h"
#include "nsIProxiedChannel.h"
#include "nsIResumableChannel.h"
#include "ADivertableParentChannel.h"
class nsIURI;
using mozilla::net::ADivertableParentChannel;