aboutsummaryrefslogtreecommitdiff
path: root/networking/inetd.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-25/+2
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Convert setuid/setgid users to xsetuid/xsetgid.Rob Landley2006-07-161-3/+3
|
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-1/+1
|
* - s/defined(__uClinux__)/BB_NOMMU/Bernhard Reutner-Fischer2006-05-311-3/+3
| | | | | | | This needs a second pass to: + add bb_daemon(unsigned char no_chdir, unsigned char no_close, const char*flag) + eventually globally export argc and argv, so we don't need to pass it to bb_daemon().
* Consolidate #include <sys/time.h> so libbb.h does it.Rob Landley2006-05-271-1/+0
|
* - patch from Denis Vlasenko to add and use bb_xdaemon()Bernhard Reutner-Fischer2006-04-121-1/+2
|
* - typo: s/biltin/builtin/gBernhard Reutner-Fischer2006-04-101-41/+41
|
* Cleanup patch from Denis Vlasenko. Mostly variants of removing the if(x)Rob Landley2006-03-011-2/+1
| | | | from before "if(x) free(x)".
* just whitespaceTim Riker2006-01-251-1/+1
|
* - add platform.h.Bernhard Reutner-Fischer2006-01-221-11/+11
| | | | - use shorter boilerplate while at it.
* change osbolete sigpause() to sigsuspend()"Vladimir N. Oleynik"2005-11-091-3/+3
|
* Yann E. Morin pointed out that rpcsvc/nfs_prot.h isn't needed with anyRob Landley2005-11-061-1/+0
| | | | reasonably recent glibc, and breaks with uClibc. So yank it.
* more lost changes BSD signals -> SysV signals. Noticed by Bernhard"Vladimir N. Oleynik"2005-10-051-8/+7
|
* BSD signals -> SysV signals, int->socklet_t. Noticed by Bernhard"Vladimir N. Oleynik"2005-10-051-17/+28
|
* dont typecast lvalue since gcc hates thatMike Frysinger2005-10-051-1/+1
|
* sync inetd with slackware-10.2 inetd (OpenBSD-1.79), have destroy bug 455"Vladimir N. Oleynik"2005-10-031-910/+1487
|
* commiting:Paul Fox2005-08-011-5/+2
| | | | | | 0000073: Add option to inetd applet to run in foreground this option was already there for uclinux -- this just exposes it in the normal case as well.
* use socklen_t instead of size_t with socket related functionsMike Frysinger2005-07-311-5/+6
|
* applying fix from:Paul Fox2005-07-191-6/+6
| | | | | | | 0000088: inetd chargen stream does not generate the characters as recommended in RFC 864 Chragen service is generating garbage characters.
* Fix broken macroEric Andersen2005-04-161-1/+1
|
* Robin Farine writes:Eric Andersen2004-06-221-1/+1
| | | | | | | | | | | Package: BusyBox Version: 1.0.0-pre10 Passing the -q <integer> option to inetd causes it to dereference an invalid pointer (optarg). The attached patch provides a fix to this problem. Robin
* Larry Doolittle writes:Eric Andersen2004-04-141-2/+2
| | | | | | | | | | | | | | | | | | | | | | This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry
* Patch from Vodz, cleanup memory usage, send strdup error messages toGlenn L McGrath2004-02-221-11/+22
| | | | syslog.
* remove duplicate header declarationsGlenn L McGrath2004-02-221-14/+6
|
* Dont use same variable and struct nameGlenn L McGrath2004-02-181-35/+37
|
* FormattingGlenn L McGrath2004-02-181-142/+146
|
* remove debuggingGlenn L McGrath2004-02-181-7/+0
|
* Mark Lord writes:Eric Andersen2004-02-171-2/+5
| | | | | | | | | | | | The config file processing for inetd in busybox-1.00-pre7 and newer is broken -- the saved command argv[] values overwrite each other. Patch to fix it is attached. Cheers -- Mark Lord Real-Time Remedies Inc.
* Redo getconfigent, save 150 bytes, still small memory leak whenGlenn L McGrath2004-01-201-80/+75
| | | | parsing invalid entries.
* Fix up a couple of bugs i introduced in yesterdays cleanup.Glenn L McGrath2004-01-181-18/+32
|
* Modify bb_lookup_port to allow the protocol to be specified, allowingGlenn L McGrath2004-01-171-13/+7
| | | | /etc/services support for inetd, netcat and tftp.
* The functions setconfig, enter and bump_nofile were only called once, marge ↵Glenn L McGrath2004-01-171-76/+50
| | | | | | them into the calling function.
* Use 1 line for function name and return value,Glenn L McGrath2004-01-171-116/+84
| | | | | remove dofork define/variable, dont check pid value is < or > than 0 if we know it is 0.
* Remove some defined statementsGlenn L McGrath2004-01-171-14/+7
|
* Changed #define names for common features (superficial)Glenn L McGrath2004-01-171-31/+22
|
* Use bb_get_chomped_line_from_fileGlenn L McGrath2004-01-171-18/+3
|
* Fixup bugs in last patchEric Andersen2003-07-281-2/+2
|
* last_patch95 from vodz:Eric Andersen2003-07-281-8/+16
| | | | | | | | | | | | | | | | | Hi. Last patch have new libbb function vfork_rexec() for can use daemon() to uClinux system. This patched daemons: syslog, klogd, inetd, crond. This not tested! I havn`t this systems. Also. Previous patch for feature request MD5 crypt password for httpd don`t sended to this mailist on 07/15/03 (mailist have Pytom module problem?). The previous patch included, and have testing. --w vodz
* Major coreutils update.Manuel Novoa III2003-03-191-3/+3
|
* Fix compile error... header problems.Manuel Novoa III2003-02-111-2/+1
|
* Fix compile error, last_patch82 by Vladimir N. OleynikGlenn L McGrath2003-02-101-8/+23
|
* New applet, inetd, make httpd features more configurable, update authors, ↵Glenn L McGrath2003-02-091-0/+1280
last_patch_80 from Vladimir N. Oleynik