Searched hist:4712 (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.3-release/etc/
H A DMakefilediff 4712 Sun Nov 20 23:11:00 MST 1994 phk No point, what so ever, in installing /etc/myname
/freebsd-10.3-release/sys/netinet/
H A Dtcp_output.cdiff 30209 Tue Oct 07 21:10:06 MDT 1997 fenner Don't allow the window to be increased beyond what is possible to
represent in the TCP header. The old code did effectively:
win = min(win, MAX_ALLOWED);
win = max(win, what_i_think_i_advertised_last_time);
so if what_i_think_i_advertised_last_time is bigger than can be
represented in the header (e.g. large buffers and no window scaling)
then we stuff a too-big number into a short. This fix reverses the
order of the comparisons.

PR: kern/4712

Completed in 130 milliseconds