summaryrefslogtreecommitdiff
path: root/networking/isrv_identd.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* usage.c: remove reference to busybox.hDenis Vlasenko2007-05-261-1/+1
| | | | | *: s/include "busybox.h"/include "libbb.h"
* random small shrinkage and elimination of staticsDenis Vlasenko2007-04-071-3/+4
|
* move everything to new NOMMU helpers, except udhcpDenis Vlasenko2007-03-261-1/+3
|
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+1
| | | | no preceding prototype
* openvt,getty,vfork_daemon_rexec,mount: tighten up fd cleanup codeDenis Vlasenko2007-01-191-1/+1
| | | | | | | | | (will close all fd's > 2 on daemonization now) getty: fix "getty -" support, and also do not try to chown/chmod "-" telnetd: fix "lost ctty" bug Yet another attempt on saner function names: bb_sanitize_server_stdio(0/1) -> bb_sanitize_stdio() + bb_daemonize();
* Rename bb_sanitize_stdio -> bb_sanitize_server_stdioDenis Vlasenko2007-01-141-7/+12
| | | | | | (name is still bad - it doesn't hint that function may do daemonization trick for you if asked to). Small fixes to fakeidentd.
* small size optimizationDenis Vlasenko2007-01-141-2/+3
|
* fakeidentd: avoid extra fcntl callsDenis Vlasenko2007-01-141-11/+13
|
* fakeidentd: fix daemon mode (was thinking that it is inDenis Vlasenko2007-01-141-14/+5
| | | | | inetd-wait mode and dying after timeout). Minor fixes, comments are improved in places.
* By popular request reinstate fakeidentd's standalone mode.Denis Vlasenko2007-01-141-0/+144
Since this is also needed for other applets like telnetd, introduce generic driver for such things. It even supports inetd-wait ('linger') mode, when inetd hands out listen socket to child and waits to it to die, instead of handing out accepted socket and continuing listening itself (nowait mode). Code growth ~200 bytes. NB: our inetd doesn't support wait mode yet (or mabe it is buggy).