mscdex

Results 571 comments of mscdex

I don't know then. That's a raw socket you're working with and node-ftp (as far as I can tell) isn't meddling with it in any way that would cause something...

There is no built-in support for proxies. It would be easy to support passing in a (connected) socket to use for the control connection instead of creating a new TCP...

Does `sftp.fastPut()` work better?

@tlbdk Yes, different code.

I'm assuming you've attempted to create an SFTP server using `ssh2-streams`? It sounds like you haven't implemented some requests being sent by FileZilla.

If I had to guess, I would say you're not properly handling 'OPEN' requests.

How are you downloading the file?

Have you tried using `ssh2` directly? It seems you are using a third party module that perhaps builds on top of `ssh2`, since `ssh2` does not export any `Promise`s.

Out of curiosity, does it work if you use `sftp.fastGet()` instead?