CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2018/02/06 17:31:10
Modified files: sys/netinet : tcp_timer.c tcp_timer.h tcp_var.h Log message: Historically TCP timeouts were implemented with pr_slowtimo and pr_fasttimo. That is the reason why we have two timeout mechanisms with complicated ticks calculation. Move the delay ACK timeout to milliseconds and remove some ticks and hz mess from the others. This makes it easier to see the actual values. OK florian@ dhill@ dlg@