Pedro Henrique Penna
Pedro Henrique Penna
Description ======== Currently, we are not handling `RST` packets. For instance, in `protocols::tcp::peer::Inner::send_rst()` we are not waiting for ARP replies if needed.
# Description We should set to wait for `2*MSL` when closing active sockets. # Related Issues #224
# Description We should add the following improvements to the TCP layer so as to improve performance: - [ ] Fast path for TCP receive - [x] Fast path for...
# Description We should implement the follow features in order to improve resource usage of TCP layer: - [ ] Memory usage - [ ] Better data structure for open...
Description ======== Some tests stall in the testing infrastructure and cause future tests to fail. We should add an auto kill feature to our regression infrastructure to prevent this situation...
Description ======== Currently, when we close a TCP connection using the `close()` system call, we do not `wait()` for the connection FIN packet to arrive, thereby leaving the connection in...
Description ======== We currently don't support the `shutdown` operation. We should, if we aim a compliant TCP API.
Description ======== We are currently using watched values to drive the TCP stack, we should trigger event actions in a direct way instead.
Description ======== We should handle cancellation of ping requests in `protocols::icmpv4::peer::ping()`.