Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsftp

Package Overview
Dependencies
Maintainers
1
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsftp - npm Package Compare versions

Comparing version 1.3.7 to 1.3.8

13

lib/jsftp.js

@@ -460,2 +460,9 @@ /* vim:set ts=2 sw=2 sts=2 expandtab */

socket.on('error', function(err) {
if (err.code === 'ECONNREFUSED') {
err.msg = 'Probably trying a PASV operation while one is in progress';
}
cmdCallback(err);
});
self.pasvTimeout.call(self, socket, cmdCallback);

@@ -588,8 +595,2 @@ socket.pause();

socket.setTimeout(timeout || TIMEOUT);
socket.on('error', function(err) {
if (err.code === 'ECONNREFUSED') {
err.msg = 'Probably trying a PASV operation while one is in progress';
}
callback(err);
});
callback(null, socket);

@@ -596,0 +597,0 @@ });

{
"name": "jsftp",
"id": "jsftp",
"version": "1.3.7",
"version": "1.3.8",
"description": "A sane FTP client implementation for NodeJS",

@@ -6,0 +6,0 @@ "keywords": [ "ftp", "protocol", "files", "server", "client", "async" ],

@@ -789,10 +789,11 @@ /*

function pushit() {
ftp.get(file1, function() {
args.push(arguments[0]);
onDone();
}
ftp.get(file1, pushit);
ftp.get(file2, pushit);
});
ftp.get(file2, function() {
args.push(arguments[0]);
onDone();
});
});
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc