Rob Jansen

Results 136 comments of Rob Jansen

I _think_ we avoid sending dns requests by adding this into the `tor.common.torrc` file (which is loaded by all tor nodes): ``` ServerDNSResolvConfFile ../../../conf/shadowresolv.conf ServerDNSTestAddresses 4uthority1,4uthority2,4uthority3 ServerDNSAllowBrokenConfig 1 ServerDNSDetectHijacking 0...

There is a lot here and I haven't reviewed in detail yet, but sharing some initial thoughts. I'm happy to see that the new parts are added as experimental options,...

> @robgjansen @sporksmith Do either of you have an opinion about making a patch release for this? @stevenengler I think we should just release v3.3.0 instead. There have been numerous...

> I wonder if it's worth revisiting at some point whether the managed process ought to open regular files from its own process instead of shadow doing it on its...

Ahh, I see, thanks for clarifying! Worth considering in a future refactor. I am reminded of how we handle unimplemented `getsockopt`/`setsockopt` or `ioctl` operations: should we log-and-fail them, or default-allow...

I've been aiming to remove all of the "Task" concept. The compiler should just return a `Vec` for a given role, i.e., implement this trait: https://github.com/unblockable/proteus/blob/3bc360aefbb7a874921ccf06fc135c3d3387644c/src/lang/mod.rs#L41-L45 But to make that...