mscdex

Results 571 comments of mscdex

Well, you can already get at the socket object via the intercept method, that would take care of all but the auth part. I guess I could just call the...

You're never telling the client when the end of the directory listing has been reached. As the documentation states, you need to (at some point) inform the client there are...

You're using the absolute path in `longname`. Perhaps the client is parsing and using the filenames from that string instead.

The format of `longname` is not standardized, however it's traditionally what you get/see with "ls -l" on *nix. I believe the field was initially intended to be used for human...

If you need/want more information, you can read about the field in the [relevant RFC](https://datatracker.ietf.org/doc/html/draft-ietf-secsh-filexfer-02).

You'll have to look at any debug output from FileZilla to narrow down whatever the problem is. Additionally you might enable debug output on the server side and see if...

Regarding FileZilla, if it's parsing `longname` you will need to fix the value to use the exact same format as `ls -l`. Regarding WinSCP, it looks like you're still sending...

CRLF is still a default somewhere in 2024?

I haven't had time to look at it. Node's implementation seems to change fairly often so it's difficult keeping up with it.

I'd be open to a PR to fix it. The `auth` methods should probably be done similarly at least for consistency.