aboutsummaryrefslogtreecommitdiff
path: root/syslogd.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added some comment lines in the header indicating that Gennady Feldman is themarkw2001-03-121-0/+2
| | | | | | | maintainer of these three applets. git-svn-id: svn://busybox.net/trunk/busybox@2051 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Applied patch from Gennady Feldman to split up syslogd.c into syslogd andmarkw2001-03-121-113/+205
| | | | | | | klogd (as it should be). git-svn-id: svn://busybox.net/trunk/busybox@2048 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Applied patch from Gennady Feldman to use single-thread instead of forking.markw2001-03-121-20/+12
| | | | git-svn-id: svn://busybox.net/trunk/busybox@2045 69ca8d6d-28ef-0310-b511-8ec308f3f277
* It turns out that DODMALLOC was broken when I reorganized busybox.handersen2001-02-201-1/+1
| | | | | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1864 69ca8d6d-28ef-0310-b511-8ec308f3f277
* This patch, put together by Manuel Novoa III, is a merge of workandersen2001-02-141-1/+1
| | | | | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed. git-svn-id: svn://busybox.net/trunk/busybox@1805 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Removed trailing \n from error_msg{,_and_die} messages.kraai2001-01-311-4/+4
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1732 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix up copyright msgs. Bump version to 0.49 in preparation forandersen2001-01-271-1/+1
| | | | | | | | a release. Update the website with release details. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1697 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix header file usage -- there were many unnecessary header files included inandersen2001-01-271-1/+3
| | | | | | | | | | busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik git-svn-id: svn://busybox.net/trunk/busybox@1695 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Commit Larry Doolittle's buffers-on-stack/buffers-via-malloc patch.andersen2001-01-251-2/+2
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1674 69ca8d6d-28ef-0310-b511-8ec308f3f277
* #define -> static const int. Also got rid of some big static buffers.markw2001-01-231-2/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1642 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Change calls to error_msg.* and strerror to use perror_msg.*.kraai2000-12-181-6/+6
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1466 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Keep unknown priorities from segfaulting.kraai2000-12-111-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1427 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a thinko -- when REMOTE_LOG support is compiled in,andersen2000-12-111-0/+6
| | | | | | | | but the user has not specified remote logging, then be sure to log locally... duh. git-svn-id: svn://busybox.net/trunk/busybox@1424 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix the option parsing to use getopt, which seems to fix bug #1050andersen2000-12-111-31/+13
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1420 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Larry Doolittle, fix up logging across multilple lines, hopefullyandersen2000-12-111-30/+25
| | | | | | | fixing bug #1061. git-svn-id: svn://busybox.net/trunk/busybox@1419 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Reverse logic so when network logging, it by default does not log locally.andersen2000-12-111-3/+3
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1418 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make no local logging a runtime option for network logging...andersen2000-12-081-26/+31
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1403 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Patch from Gennady Feldman <gfeldman@mail.com> to make syslogd not logandersen2000-12-081-4/+4
| | | | | | | | when compiled for remote logging. Not the ideal way to fix it (it should really be a runtime switch), but good enough for now I guess... git-svn-id: svn://busybox.net/trunk/busybox@1402 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Changed names of functions in utility.c and all affected files, to makemarkw2000-12-071-10/+10
| | | | | | | compliant with the style guide. Everybody rebuild your tags file! git-svn-id: svn://busybox.net/trunk/busybox@1398 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Stop using TRUE and FALSE for exit status.kraai2000-12-011-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1360 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Renamed "internal.h" to the more sensible "busybox.h".andersen2000-09-251-1/+1
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@1119 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make syslogd ignore SIGCLD only if SIGCLD is defined. This should fix SPARC.proski2000-09-131-0/+3
| | | | | | | Also ignore SIGCHLD - it must have been meant. git-svn-id: svn://busybox.net/trunk/busybox@1042 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Typo fix: resolv -> resolveproski2000-09-121-1/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@1037 69ca8d6d-28ef-0310-b511-8ec308f3f277
* syslogd was leaking processes that could forever busyloop. Fixed.andersen2000-08-201-1/+4
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@958 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some #include updates.andersen2000-08-101-1/+0
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@946 69ca8d6d-28ef-0310-b511-8ec308f3f277
* * syslogd can now log messages to a remote host -- patch thanksandersen2000-07-201-1/+103
| | | | | | | | to Gyepi Sam <gyepi@praxis-sw.com> -Erik git-svn-id: svn://busybox.net/trunk/busybox@890 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Extract usage information into a separate file.kraai2000-07-161-15/+0
| | | | git-svn-id: svn://busybox.net/trunk/busybox@864 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Forgot to commit these cleanups it seems.andersen2000-07-111-1/+0
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@819 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Remove yet more kernel header dependancies.andersen2000-07-101-1/+1
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@804 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More portability updates. Now compiles cleanly vs glibc, libc5, and uclibcandersen2000-07-091-1/+1
| | | | | | | | | (except for mkfs_minix and fsck_minix -- and it doesn't yet link vs uclibc due to missing stuff in the library). -Erik git-svn-id: svn://busybox.net/trunk/busybox@795 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Turned some stuff into features that really are features, not apps.andersen2000-07-061-5/+5
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@762 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make syslogd.c, init.c, and update.c compile error/warning free under both ↵andersen2000-06-191-4/+2
| | | | | | | | | libc5 and libc6. -Erik git-svn-id: svn://busybox.net/trunk/busybox@664 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Updated to compile and work with libc5.andersen2000-06-191-14/+29
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@662 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Syslogd will not go to background if "-n" is given. Better helpproski2000-06-071-45/+52
| | | | | | | and argument checking git-svn-id: svn://busybox.net/trunk/busybox@628 69ca8d6d-28ef-0310-b511-8ec308f3f277
* A number of additional fixed from Pavel Roskin, note some more bugs in theandersen2000-06-021-4/+4
| | | | | | | | | TODO list. Add Glenn to the Authors list for writing a mini ar for BusyBox, which is now included. -Erik git-svn-id: svn://busybox.net/trunk/busybox@594 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELPerik2000-05-121-3/+6
| | | | | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik git-svn-id: svn://busybox.net/trunk/busybox@532 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Latest and greatest. Some effort at libc5 (aiming towards newlib)erik2000-04-281-2/+2
| | | | | | | | compatability. -Erik git-svn-id: svn://busybox.net/trunk/busybox@499 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More Doc updates. cmdedit and more termio fixes.erik2000-04-211-1/+2
| | | | git-svn-id: svn://busybox.net/trunk/busybox@492 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Add #include <sys/param.h> to syslogd.erik2000-04-191-0/+1
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@490 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Make the sys logger for so that concurrent logging will workerik2000-04-191-40/+64
| | | | | | | | properly (see tests/syslog_test.c for example). -Erik git-svn-id: svn://busybox.net/trunk/busybox@489 69ca8d6d-28ef-0310-b511-8ec308f3f277
* More stufferik2000-04-181-77/+72
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@481 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Updateserik2000-04-181-6/+9
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@472 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Fix a tar bug: tar removed leading '/'s for symlink targets.erik2000-04-141-44/+20
| | | | | | | | | Fix a syslogd bug: Only the first sizeof(buffer) was read from the /dev/log socket, causing (for most cases) only every other log item to be logged. -Erik git-svn-id: svn://busybox.net/trunk/busybox@456 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Latest and greatest. Seems there is a bug.erik2000-04-141-7/+11
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@454 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Upates to include copyright 2000 to everythingerik2000-04-131-1/+2
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@447 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some more minor updates to better use some gcc attributes.erik2000-04-061-0/+2
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@436 69ca8d6d-28ef-0310-b511-8ec308f3f277
* minor changes to mount/umount to support-by-ignoring the "-v" flag.erik2000-04-041-86/+152
| | | | | | | | | Added optional core dumping as a feature for init, and include a rewrite of syslogd so that it now supports multiple concurrent connections. -Erik git-svn-id: svn://busybox.net/trunk/busybox@425 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Hmm. Missed this changeerik2000-03-211-0/+1
| | | | git-svn-id: svn://busybox.net/trunk/busybox@415 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Some updates for the day,erik2000-02-181-11/+11
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@373 69ca8d6d-28ef-0310-b511-8ec308f3f277
* Updateserik2000-02-111-22/+17
| | | | | | | -Erik git-svn-id: svn://busybox.net/trunk/busybox@368 69ca8d6d-28ef-0310-b511-8ec308f3f277