CVSROOT: /cvs Module name: src Changes by: [email protected] 2025/01/26 10:21:26
Modified files:
sys/netinet : tcp_input.c
Log message:
Syn cache calls TCP drop instead of socket abort.
Instead of calling socket layer soabort() and then down via tcp_abort()
which ends in tcp_drop(), call tcp_drop() directly from the TCP syn
cache. The errno is not relevant as the new socket is dropped
before it can be reached from userland.
OK mvs@
