Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: src/usr.sbin/inetd
Module Name: src
Committed By: mlelstv
Date: Sat Dec 27 08:06:38 UTC 2025
Modified Files:
src/usr.sbin/inetd: inetd.8 inetd.c inetd.h parse.c parse_v2.c
Log Message:
Add an optional accept limit to stream/nowait services.
Old syntax:
socket-type[,accept-max][:accept-filter]
New syntax adds the option:
accept_max Equivalent to accept-max in positional notation.
accept_max is a positive integer. inetd will stop accepting new
connections for a service, when the number of running and
waited for instances reaches that number. Further connection
attempts will be queued by the kernel and eventually time
out.
The limit acts in parallel to the wait maximum (default 40). If
you want more than 40 instances being spawned, you also need to
adjust the wait maximum to a higher value.
To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 src/usr.sbin/inetd/inetd.8
cvs rdiff -u -r1.141 -r1.142 src/usr.sbin/inetd/inetd.c
cvs rdiff -u -r1.7 -r1.8 src/usr.sbin/inetd/inetd.h \
src/usr.sbin/inetd/parse_v2.c
cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/inetd/parse.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Home |
Main Index |
Thread Index |
Old Index