Devasia Thomas

Results 21 comments of Devasia Thomas

@ywave620 So default behavior for nodejs [server](https://github.com/nodejs/node/blob/main/lib/_http_server.js#L514) is to ``allowHalfOpen`` whereas for [clients](https://github.com/nodejs/node/blob/main/lib/net.js#L403), its to not ``allowHalfOpen`` - you can still pass it in options to override this behavior (backdoor...

@bnoordhuis Thank you looking into it :) . I just reached that part of code Looking for your thoughts on the below: 1. in ``addRequest``, the [code](https://github.com/nodejs/node/blob/main/lib/_http_agent.js#L267) that clears stale...

Hi @minghuaw First off, thanks for pushing out a fix at break neck speed - appreciate it :). Unfortunately, the new crate wants my project to switch to rust nightly....

I just noticed 2021 was released to stable a few days back. Let me update and check again :)

Oh, you didn't have to. I already updated my code to move to 2021, I was just writing the client side right now before I responded again.

@minghuaw Good news :) It's working as intended. Couple of questions - Is there a retry mechanism for client connects within the library? - I would like to know the...

> The library doesn't have built-in mechanism right now. #5 mentioned a crate called stubborn-io which can be used with Client::with_stream(stubborn_tcp_stream) Nice! I'll definitely give it a shot. In this...

> Add in game launch options `LD_PRELOAD="" %COMMAND%` Is this a Linux only thing or does this work in windows too?