Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line bare tagRemove /^\s*\$FreeBSD\$$\n/
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will beaddressed in a future commit.
show more ...
Add missing include of stdio.h.MFC after: 3 daysSponsored by: Juniper Networks, Inc.
Style: NO_MAN doesn't need any value.
Start the dreaded NOFOO -> NO_FOO conversion.OK'ed by: core
The following code sets up two connected TCP sockets that send data to eachother until the window is closed. Then one of the sockets is closed, whichwill generate a RST once the TCP at the other so
The following code sets up two connected TCP sockets that send data to eachother until the window is closed. Then one of the sockets is closed, whichwill generate a RST once the TCP at the other socket does a window probe.All versions of FreeBSD prior to 11/26/2004 will ignore this RST into a 0window, causing the connection (and application) to hang indefinitely.On patched versions of FreeBSD (and other operating systems), the RSTwill be accepted and the program will exit in a few seconds.Submitted by: Michiel BolandReviewed by: silby