summaryrefslogtreecommitdiffstats
path: root/netwerk/protocol/ftp/nsFtpConnectionThread.h
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-01-26 08:26:23 +0000
committerGitHub <noreply@github.com>2020-01-26 08:26:23 +0000
commita1cce3b2b00bbd9f4983013ddd8934a7bccb9e99 (patch)
tree08495718d2d650a3ce25ee7a39010733685e9299 /netwerk/protocol/ftp/nsFtpConnectionThread.h
parenta64ac6d7022e4c88149d897864f857dce1063249 (diff)
parent7d53919c26e7b1126d2b0bd534ec7299fc34f040 (diff)
downloadUXP-a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99.tar
UXP-a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99.tar.gz
UXP-a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99.tar.lz
UXP-a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99.tar.xz
UXP-a1cce3b2b00bbd9f4983013ddd8934a7bccb9e99.zip
Merge pull request #1371 from athenian200/ftp-list
Potential hang on bad FTP sequence
Diffstat (limited to 'netwerk/protocol/ftp/nsFtpConnectionThread.h')
-rw-r--r--netwerk/protocol/ftp/nsFtpConnectionThread.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/netwerk/protocol/ftp/nsFtpConnectionThread.h b/netwerk/protocol/ftp/nsFtpConnectionThread.h
index b4e71bd10..2fe21ab8c 100644
--- a/netwerk/protocol/ftp/nsFtpConnectionThread.h
+++ b/netwerk/protocol/ftp/nsFtpConnectionThread.h
@@ -180,6 +180,12 @@ private:
bool mRetryPass; // retrying the password
bool mStorReplyReceived; // FALSE if waiting for STOR
// completion status from server
+ bool mRlist1xxReceived; // TRUE if the server has sent a
+ // LIST 1xx response.
+ bool mRstor1xxReceived; // TRUE if the server has sent a
+ // STOR 1xx response.
+ bool mRretr1xxReceived; // TRUE if the server has sent a
+ // RETR 1xx response.
nsresult mInternalError; // represents internal state errors
bool mReconnectAndLoginAgain;
bool mCacheConnection;