Franz Heinzmann

Results 98 issues of Franz Heinzmann

Hi, we know have `MergeUnbounded` to merge an unbounded, growable list of streams. However it is not possible to *remove* streams from the list. `futures_concurrency` has a [`Keyed`](https://docs.rs/futures-concurrency/latest/futures_concurrency/stream/stream_group/struct.Keyed.html) variant, where...

Hi, while starting to work with willow-rs I noted some things where the codebase differs from the [rust naming conventions](https://rust-lang.github.io/api-guidelines/naming.html) and [documentation conventions](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text): * In function docs `willow-rs` uses imperative...

documentation
good first issue

Hi, I wrote a benchmark to compare two scenarios for collecting messages from many tokio tasks: a) cloning the sender of a single channel b) merging the receivers of many...

## Description This adds `Endpoint::watch_node_addr` which returns a stream that yields `NodeAddr`. We have `Endpoint::direct_addresses` and `Endpoint::watch_home_relay`. In #2731 what I needed, and what I suspect apps will oftenly need,...

While the crate description states that this crate is not intended for debugging tests but on testing the logging (which is great), we frequently still need to debug tests. We...

This adds a new connection event to quinn-proto: `ResumptionEnabled`. This event is emitted if TLS13 resumption tickets were received. The event is emitted at most once and only on the...

Currently the `Device::name()` on `oboe` host (Android) only contains the `oboe::AudioDeviceInfo::product_name` string. This is, however, identical for all internal audio devices. This PR changes this to add the `AudioDeviceType` and,...

Allows to limit access to a dumbpipe server to nodes listed in an `authorized_keys` file. Quoting from the new section in the README: You can limit access to a dumbpipe...

Implements a fix to #390: When printing an error that has the `Snafu` derive with the alternate display formatter (`{err:#}`), the list of sources is attached, similar to how anyhow...

## Description Our DoH support in iroh-dns-server is broken: #3737 We didn't have any tests for DoH before. This adds end-to-end tests that test resolving DoH records via HTTP and...