aboutsummaryrefslogtreecommitdiff
path: root/tools/regression/netinet/udpconnectjail
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/ Similar commit in main: (cherry picked from commit d0b2dbfa0ecf)
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/ Similar commit in main: (cherry picked from commit b3e7694832e8)
* 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
* Upgrade jail(2) to latest jail(2) API to make the regression test workBjoern A. Zeeb2011-05-301-2/+9
| | | | | | | | | | again. Eventually should switch to jail_set(2). Reported by: rwatson MFC after: 10 days Notes: svn path=/head/; revision=222487
* Style: NO_MAN doesn't need any value.Ruslan Ermilov2006-03-151-1/+1
| | | | Notes: svn path=/head/; revision=156735
* Change jail IP from 1.0.0.127 to 127.0.0.1, which shows, that this testPawel Jakub Dawidek2005-07-231-1/+1
| | | | | | | doesn't examine the real issue as it pass without problems. Notes: svn path=/head/; revision=148327
* Use WARNS?= instead of WARNS= in Makefiles so that global warningRobert Watson2005-01-221-1/+1
| | | | | | | | | settings can override local ones. Pointed out by: ru Notes: svn path=/head/; revision=140643
* In refactoring the test before committing, a pointer was passed insteadRobert Watson2005-01-161-2/+2
| | | | | | | | | | of a structure for the sockaddr_in. Pass the pointer to connect() instead of the pointer to the pointer. Specify a port number to connect to. Notes: svn path=/head/; revision=140352
* Add udpconnectjail, a simple regression test to exercise an (as yet)Robert Watson2005-01-162-0/+117
unfixed bug in the jail() implementation relating to using the connect() system call on UDP sockets. PR: 26506 Notes: svn path=/head/; revision=140348