Pedro Henrique Penna
Pedro Henrique Penna
# Description We should implement the following missing functionalities in the TCP layer: - [ ] TCP Fast Open - [ ] Nagle's algorithm (optional) - [ ] Silly window...
# Description In the ARP cache, we should enable multiple waiters for the same address.
# Description We have currently disable entry eviction in the ARP cache due to missing functionalities in the network stack. Once we introduce them we should re-enable eviction in `catnip::protocols::arp::peer::background()`
# Description We should implement `close()` for passive sockets. Related Issues ---------------- - https://github.com/demikernel/catnip/issues/82
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...