Matt Johnston

Results 135 comments of Matt Johnston

> [@mkj](https://github.com/mkj) I can try, though I am unsure which pollfd you mean. Do you mean a client one or the binding one? I'm not sure how I would get...

If someone wants to maintain OpenRC files I can add them to a contrib directory. The debian directory is fairly dated at present (the downstream Debian maintainer is good at...

I don't think this is correct. It will allow using a pty that is owned by any arbitrary user (in the parent namespace), but then that user in the parent...

It should be also looking in `src/` because that's set as `AC_CONFIG_AUX_DIR`. https://github.com/mkj/dropbear/blob/master/configure.ac#L892 In my config.log I see: ``` configure:2828: looking for aux files: install-sh config.guess config.sub configure:2841: trying ./src/...

Which autoconf version is it? If you can attach the regenerated `configure` script that might give a clue too.

It looks like autoconf changed `AC_CONFIG_AUX_DIR` behaviour in 2.70, https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=commit;h=4c59bf27d7083088290219450c81d999431b43f1 I'll bump Dropbear's autoconf requirement to 2.70, in your case I guess you can just avoid running `autoreconf` at all...

> For now, I am going to use an auxiliary buffer to assemble the request. More coming soon... Yeah I think a buffer is probably necessary (if SSHWire had partial...

One way to resolve lifetime problems could be to have the `readdir` be passed a closure to call with entries to add? Either a `FnMut` or `AsyncFnMut`. Just an idea,...

I'm currently travelling, should be able to take a look later next week.

> I identified the relevant function and point in sshwire-derive/src/lib.rs where automatic encoding of numeric enum fields could be done, but the enum data type would need to be provided...