Skip to content

Instantly share code, notes, and snippets.

@victorstanciu
Created March 20, 2012 17:06
Show Gist options
  • Save victorstanciu/2138255 to your computer and use it in GitHub Desktop.
Save victorstanciu/2138255 to your computer and use it in GitHub Desktop.
Prevent jsftp from sending Keep Alive command after QUIT command has been sent
// self.keepAlive(); <- this is the line I replaced
if (lcCmd == 'quit') {
clearInterval(self._keepAliveInterval);
} else {
self.keepAlive();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment