Alan Somers
Alan Somers
@andrew-d I applied your patch, but I don't see anything obviously new and useful in the logs. Maybe I'm missing something? ``` Feb 13 20:17:53 threonine tailscaled[35956]: 2024/02/13 20:17:53 monitor:...
I applied the patch to the FreeBSD port, which is based on release 1.58.2, not the master branch. I'll collect those logs for you later in the morning.
Interesting theory! I'll try it out next week. And BTW, I didn't have this problem with openconnect even though I still had statically configured network interfaces. I don't know what...
Can you give an example of how you would use `SeqHandle`?
To help me understand, could you provide a code sample, even one that doesn't compile?
It looks like you've reimplemented almost all of Mockall, keeping only `Sequence`, one of the smallest components. Correct? If so, I don't think that's sufficient reason to publicize Sequence's internal...
What _is_ the point of reimplementing all of Mockall's generated code, anyway? Are you trying to mix calls to the same Sequence objects from both generated code and your own...
Mockall doesn't support `Self` in that position. It could, with some extra work. But if you don't want to wait, here is a workaround: ```rust use mockall::{automock, mock, predicate::*}; pub...
@Amanieu what can we do about backwards-compat? It should only be a problem for crates that uses the fairly obscure `sigev_notify_thread_id` field. That includes Nix, which I can fix. Can...
Then here's what I suggest: * Run Crater in check mode on all of libc's direct dependencies. * If Nix is the only affected crate, then we can make the...