summaryrefslogtreecommitdiffstats
path: root/usr.sbin/inetd/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-1/+1
|
* Remove the -DFAST_IPSEC from Makefiles again.bz2007-07-051-1/+1
| | | | | | | | | This was needed during the IPSEC->FAST_IPSEC->IPSEC transition period to not break the build after picking up netipsec header files. Now that the FAST_IPSEC kernel option is gone and the default is IPSEC again those defines are superfluous. Approved by: re (rwatson)
* Commit IPv6 support for FAST_IPSEC to the tree.gnn2007-07-011-1/+1
| | | | | | | | This commit includes all remaining changes for the time being including user space updates. Submitted by: bz Approved by: re
* inetd and telnetd are not included in the standard releaseyar2006-07-311-0/+1
| | | | | | | crunched floppies, but they can be included as options in src/release/picobsd (omitted by default though.) Therefore preserve the RELEASE_CRUNCH knob in their Makefiles, but tell its real purpose in a comment.
* Obey MK_INET6_SUPPORT.yar2006-07-271-1/+7
|
* Back out a Makefile change that accidently snook in.dwmalone2006-04-171-1/+1
|
* Port 37 (RFC 738) style times are supposed to be a 32 bit time sincedwmalone2006-04-171-1/+1
| | | | | | | | | | | | 1900 in network byte order. Use a uint32_t to calculate and send the time, so that we don't need to know how big ints or longs are. I used uint32_t instead of int in the patch, on the off chance someone uses our inetd source on a system that doesnt 32 bit ints. PR: 95290 Submitted by: Bruce Becker <hostmaster@whois.gts.net> MFC after: 2 weeks
* Revert previous commit for now, which seems to have (re)introduced somedelphij2006-01-181-1/+1
| | | | | | | old bugs, as well as some unwanted side effects. I will do more investigation and fix these issues first. Pointed out by: dwmalone
* Improves and cleanups over inetd(8):delphij2006-01-181-1/+1
| | | | | | | | | | | | - Teach inetd(8) about kqueue, originally implemented by jmg@[1]. - Use new C99 style function prototypes instead of K&Rs. - Raise WARNS from 2 to 6 Glanced at by: ru MFC After: 2 weeks [1] http://people.freebsd.org/~jmg/inetd.kq.patch, http://people.freebsd.org/~jmg/inetd.kq.html
* Rather than use the gcc -fno-builtin-log flag, just rename the 'int log'peter2003-10-301-1/+0
| | | | variable.
* Use -fno-builtin-log so gcc doesn't get ideas about using a math functionpeter2003-10-261-1/+2
| | | | | to log data. Clean up an unused variable that was hidden by the WARNS?=2 being commented out. Uncomment it now that it compiles cleanly again.
* Move my inetd maintainer note to src/MAINTAINERS.dwmalone2003-07-151-2/+0
|
* Use CFLAGS, not COPTS, in the Makefile. bsd.prog.mk conveniently addsdd2001-09-051-2/+2
| | | | | | | | | COPTS towards the end of final CFLAGS so that it can be used to override Makefile and other defaults. Using it in Makefiles risks having options set using it clobbered when somebody uses it on the command line. Approved by: bde
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-5/+7
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Turn off WARNS stuff. When combined with -nostdinc and system headerdwmalone2001-07-171-1/+1
| | | | files that aren't WARNS clean it causes trouble.
* o Remove old setproctitle.dwmalone2001-07-171-0/+1
| | | | | | | | o Mark unused variables. o Set WARNS?=2 o Results in no code changes. Submitted by: Mike Barcroft <mike@q9media.com>
* Don't add -Wall, as it's a compiler specific flag.dwmalone2001-06-241-1/+1
|
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-0/+1
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-1/+0
|
* Claim maintainership of inetd.dwmalone2000-10-211-0/+2
|
* Make inetd picobsd friendly, dont use ipsec when RELEASE_CRUNCHluigi2000-02-091-3/+6
| | | | | | is defined Approved-by: jordan
* Drop maintainership of inetd, since nobody respects it anyway.des2000-02-011-1/+0
|
* several tcp apps IPv6 updateshin2000-01-251-2/+3
| | | | | | | | | | | | -inetd -rshd -rlogind -telnetd -rsh -rlogin Reviewed by: freebsd-arch, cvs-committers Obtained from: KAME project
* $Id$ -> $FreeBSD$peter1999-08-281-1/+1
|
* Pull on my asbestos undies and claim ownership of inetd to prevent furtherdes1999-07-261-1/+2
| | | | | | flamage between our beloved messrs Hearn and Feldman. Further commits go through me. I urge the contestants to direct their energies at cleaning up main() in inetd.c, which has over time become a crawling horror.
* Move code for all builtin services from inetd.c to builtins.c, includingsheldonh1999-07-221-1/+2
| | | | | | | the Green Piece. :-) In future, new builtin services are less likely to need to touch the already tangled inetd.c .
* By popular demand, ident_stream now takes arguments. Ex:green1999-07-151-6/+0
| | | | | | | | | # This enables the old, fake ident service. auth stream tcp nowait root internal # This enables the new, real ident service. auth stream tcp nowait root internal auth -r # This enables ~/.fakeid support, too. auth stream tcp nowait root internal auth -r -f
* This is the working internal ident service. Turn it on by settinggreen1999-07-151-1/+7
| | | | | | the make variable REAL_IDENT, and ~/.fakeid support can be added with FAKEID set. Note that the default behavior is the same as the old behavior.
* Add command-line option (-w), specified once to enable wrapping andsheldonh1999-06-271-2/+2
| | | | | | | | | | | | | twice to enable wrapping for internal wrapping as well. If the option is not specified wrapping is turned off so that inetd will behave exactly as it used to before TCP Wrappers was imported. Change etc/defaults/rc.conf so as to encourage wrapping on new systems. Clarify the use of TCP Wrappers in the IMPLEMENTATION NOTES of the manual page. Approved by: jkh
* Various fixes for inetd's TCP Wrappers support:sheldonh1999-06-171-2/+2
| | | | | | | | | | | | | | | | | | | | | 1) Handle forking and non-forking internal services correctly. Turn on wrapping for internal services because it works now. 2) Preserve server names for each service on HUP. 3) Honour hosts_options(5) severity option. 4) Add IMPLEMENTATION NOTES section to clarify TCP Wrappers usage and limitations. This change may cause previously allowed builtin services (e.g. daytime) to be denied in existing configurations. PR: 12097 Reviewed by: markm 1) Reported by: Pierre Beyssac <pb@fasterix.freenix.org> 2) Submitted by: Masachika ISHIZUKA <ishizuka@ish.org> 3) Submitted by: David Malone <dwmalone@maths.tcd.ie>
* There seems to be a problem (most likely when there is no hosts.allow)markm1999-05-071-2/+2
| | | | with wrapping the internal services, so do not wrap them for now.
* Fix the "internal" wrapping as well as a nasty bug involvingmarkm1999-04-111-2/+2
| | | | | | | the daemon name vs the path. Also fix some warnings and improve the wrapper section of the man page. Nice debugging work by: Sheldon Hearn
* Now inetd(8) has direct support for tcp_wrappers! Not working at themarkm1999-03-281-3/+4
| | | | | moment is support for the internal serfvices, so these are not enabled. Volunteers welcome!
* Implement minimal login class support (ie: does a setusercontext()).peter1997-01-131-1/+1
| | | | Enabled by defining LOGIN_CAP in Makefile, on by default.
* Reviewed by: Bill fennerjulian1996-11-101-0/+3
| | | | | | | | | | | Submitted by: Archie Cobbs (Archie@whistle.com) Changes to allow inted to control the number of servers to start on each service. This is a defence against a denial of service attack in which the system is made unusable by an external party. It also allows the behaviour of small memory systems to be more accuratly predicted, by bounding the extent to which processes can multiply.
* Make inetd use setproctitle from libutil instead of it's own version.peter1996-01-011-0/+3
| | | | The old code can probably still be compiled with #define OLD_SETPROCTITLE
* Get rid of update. Make man page installation work with our schemewollman1994-08-051-2/+2
| | | | (and rename a few in the process).
* BSD 4.4 Lite usr.sbin Sourcesrgrimes1994-05-261-0/+7
OpenPOWER on IntegriCloud