Eric Zhang

Results 128 comments of Eric Zhang

Hi @kevinGC, we think it would involve supporting the [Infiniband verbs](https://github.com/linux-rdma/rdma-core/blob/master/Documentation/libibverbs.md) in libibverbs, which are operations that let you send and receieve data while bypassing the kernel networking stack. There...

Sounds good, thank you for sharing your thoughts on the tractability of this!

No, feel free to fork for or use case though

I would recommend checking out the Rust book to get started with learning Rust. This should give you enough background to learn how to modify a small program like bore...

I can't reproduce this unfortunately on macOS. It may be an operating-system dependent issue, and I'm not sure about all of the implicates of SO_REUSEADDR and SO_REUSEPORT for different operating...

Hm, so I spent a bit of time looking at this again. To clarify, when you run: ```bash bore local 3000 --to bore.pub ``` Everything works, including on reconnection. But...

> I believe the heartbeat mechanism must be overhauled. Rather than the current approach—where the server sends a heartbeat over a half‑closed socket and assumes the connection remains alive—the server...

Yes, this would be possible! Not in scope for bore itself since it's meant to be minimal and for people to read the code and modify it to suit their...

I'm closing because additional options are not in scope for bore. It's a small program and meant to be read/forked if you have more particular use cases. I don't have...

Ah yes this makes sense, we could do this. Technically self-hosting is not supported, but it seems like the bare minimum sshx could offer to help. Thanks for implementing!