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

there are some libraries supporting it, such as https://github.com/meh/rust-tun/blob/master/src/platform/macos/device.rs any plans of doing so in smoltcp?

This adds the Routing Protocol for Low-power and lossy networks (RPL) protocol, as defined in [RFC6550](https://datatracker.ietf.org/doc/html/rfc6550). I tried making this smaller, but it quickly became difficult to keep track of...

In certain use cases, it's desirable to not send a SYN|ACK packet immediately after receiving a SYN -- for example, a TCP proxy that doesn't want to do so until...

In previous versions it was possible to pre-fill the neighbor cache. It looks like it's part of the inner Interface context() now, but no longer exposed to the public API?...

For VPN/proxy-like programs, it's useful to listen to all traffic on all ports. For example, see [this library](https://github.com/eycorsican/netstack-lwip). I'm currently using it, but it would be nice to be able...

When trying to run the tcpdump example on an Apple M2 MacBook running macOS 13.4 I get the following error: ``` % cargo run --release --example tcpdump en0 Finished release...

To start with, I'm not sure this is indeed a bug: Given two TCP sockets in listening state, each receives a SYN. Afterwards, the remote client sends a RST to...

The logic behind `interface.poll()` repeatedly processes packet ingress and egress. However, in cases where packets may be arriving faster than they can be read and processed (i.e. heavy multicast/broadcast traffic,...

kind/bug

Hi there, Over the past few weeks I have been working on making some of the tests for the TCP implementation more powerful. I have been using [Kani](https://github.com/model-checking/kani) to be...