smoltcp icon indicating copy to clipboard operation
smoltcp copied to clipboard

a smol tcp/ip stack

Results 117 smoltcp issues
Sort by recently updated
recently updated
newest added

We should have some binary dumps of some interesting IPv6 packets in the corpus directory for cargo-fuzz.

kind/feature
good first issue

We should do something about items in `iface::routes::Routes` that are expired, or no longer "preferred".

kind/feature

I've been thinking about #55 for a while and I've come up with a much broader plan which would require significant refactoring, so I'm posting my not-so-concrete-yet thoughts here to...

This is my first of what is likely to be multiple PRs for working with SRv6 with smoltcp! For now, this is just the wire representations. I believe I implemented...

I added three new DHCP options for PXE boot defined in this [RFC4578](https://datatracker.ietf.org/doc/html/rfc4578) Appropriate tests have been added too. I also added two option fields vendor id and time offset...

I'd be interested in implementing IPv6 SLAAC support for smoltcp. I wonder what the best way to do this would be? I see DHCPv4 is implemented as a socket type....

kind/feature

The current `'a` lifetime in the `Device` trait is essentially a workaround for lack of GATs. I'm just experimenting how this would look like, it'll have to wait until GATs...

Decryption of IEEE802154 frames. Still very much a work in progress. I am currently able to decrypt and check the authentication for a 32-bit authentication tag (the EncMic32 mode). Other...

`ndisc` is throwing `Unrecognized` when seeing unknown options, for example here https://github.com/smoltcp-rs/smoltcp/blob/35e833e33dfd3e4efc3eb7d5de06bec17c54b011/src/wire/ndisc.rs#L239 but rfc4861 section 9 says > In order to ensure that future extensions properly coexist with > current...

kind/bug