Neil Tallim

Results 55 comments of Neil Tallim

I've added a minimal example showing how to use libpydhcpserver directly with well-behaved clients with just enough functionality to do useful work: https://github.com/flan/staticdhcpd/blob/3.0.x/libpydhcpserver/examples/hardcoded_server.py I'd absolutely not suggest anyone take that...

I was definitely expecting to encounter a bunch of str/bytes things like this as the migration proceeded. Thanks for reporting this one; it's been addressed in the most recent commit,...

The cycle of having virtually no free time has continued, unfortunately, but I'll be rolling this system out for a development and testing environment at work, so I'll finally be...

Hey, Stefan. The conflict here is likely that the implementation of rperf uses separate ports for each connection that carries data. The forwarded port is sufficient for the control-session, but...

I've added a new branch, `windows-cfg_if`, which replaces my incorrect assumption that Rust would discard unused symbols during its build process, rather than trying to evaluate everything. I also incorrectly...

Can you re-run this with `--debug` (or `-d`)? I suspect the block is happening at https://github.com/opensource-3d-p/rperf/blob/14d382683715594b7dce5ca0b3af67181098698f/src/protocol/communication.rs#L45 , though I'm unsure of the circumstances under which the Windows networking subsystem would...

I'll hopefully be able to do some testing directly against M1/M2 hardware later this year, running native Mac OS, but for now, I'm just trusting that *nix* provides the facilities...

Yeah... sending 176 bytes really shouldn't be a problem with the socket in the state I expect it's in. But it looks like mio's implementation changed since 0.6 (in a...

Ah, it's not that mio's interface changed within 0.6, it's that it behaves very differently on Windows. And mio 0.7+ removed set_keepalive(), which was the only reason I had introduced...

I've excised *mio* in the `socket2` branch. While everything works (at least under Linux), there's a timing mismatch in the handoff for TCP that doesn't affect total transmission time or...