mscdex

Results 571 comments of mscdex

If you don't have any keepalive enabled, then a network disconnection won't be detected (as quickly as you expect) because of how TCP works and your OS's TCP connection settings....

It shouldn't hurt anything, but you shouldn't need to explicitly destroy since any `'error'` event typically indicates a fatal (connection) error which should cause the closing of the underlying socket.

My only guess is that there is some kind of bug in your code. If the socket disconnects, there is no way for `imap` to magically continue. Are you reusing...

As far as I know the latest version of `nan` should be node v20.x compatible.

Do you have a minimal code example that reproduces this? Also, what server (remote ident shown in the debug logs) is this with?

That wasn't one of my original design goals as I wrote this to fill an immediate need. I'm not especially opposed to a pull request to change things, but then...

`var path = require('path');` is missing before that.

Briefly looking over the changes it looks like the purpose of this is to add some sort of `magic_set` pool? Have you compared performance with a `std::queue`? Maybe a better...

Pull requests are welcome :-)