summaryrefslogtreecommitdiff
path: root/tools/regression/netinet/tcpconnect
Commit message (Collapse)AuthorAgeFilesLines
* NO_MAN= has been deprecated in favor of MAN= for some time, go aheadWarner Losh2014-04-131-1/+1
| | | | | | | | | and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. Notes: svn path=/head/; revision=264400
* Add missing #include of err.h.Robert Watson2011-05-301-0/+1
| | | | | | | | MFC after: 3 days Sponsored by: Juniper Networks, Inc. Notes: svn path=/head/; revision=222483
* Convert errx(-1, ..., strerror(errno)) to err(-1, ...).Bjoern A. Zeeb2007-11-281-8/+8
| | | | | | | Discussed with: rwatson Notes: svn path=/head/; revision=174033
* Add support for tcpmd5 tests.Bjoern A. Zeeb2007-11-282-13/+63
| | | | | | | | | | | | | Add README.tcpmd5 to describe how to build a simple test setup and run tests. Convert compile time options to run time options [1]. Discussed with: rwatson Suggested by: rwatson [1] Notes: svn path=/head/; revision=174032
* Add an #ifdef'd non-blocking version of the test.Robert Watson2005-05-161-1/+10
| | | | | | | Update copyright. Notes: svn path=/head/; revision=146251
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* For variables that are only checked with defined(), don't provideRuslan Ermilov2004-10-241-1/+1
| | | | | | | any fake value. Notes: svn path=/head/; revision=136910
* Use errx() instead of perror()/exit() for conciseness.Robert Watson2004-10-231-25/+14
| | | | | | | Suggested by: ru (some time ago) Notes: svn path=/head/; revision=136843
* Fixed a typo.Ruslan Ermilov2004-10-171-1/+1
| | | | | | | Submitted by: Pawel Worach Notes: svn path=/head/; revision=136613
* Add a simple C-based TCP connection generator, which generates andRobert Watson2004-10-092-0/+160
closes the specified number of TCP connections sequentially and synchronously. Useful for trying to trigger races in the accept code. Notes: svn path=/head/; revision=136337