42b3dea9bf
* arpping(): smaller and even probably fixed * lots of variables/params converted: ulong -> uint32_t * uptime() nuked in favor of monotonic_sec() * udhcp_get_packet(): only one "bad vendor", simplify function old new delta reservedIp 36 35 -1 udhcpc_main 2462 2460 -2 addStaticLease 64 62 -2 static.broken_vendors 16 - -16 uptime 19 - -19 udhcpd_main 1273 1238 -35 udhcp_get_packet 223 184 -39 .rodata 144162 144106 -56 arpping 690 609 -81 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 0/7 up/down: 0/-251) Total: -251 bytes text data bss dec hex filename 734241 3028 14400 751669 b7835 busybox_old 734005 3028 14400 751433 b7749 busybox_unstripped
31 lines
772 B
C
31 lines
772 B
C
/* vi: set sw=4 ts=4: */
|
|
/* common.c
|
|
*
|
|
* Functions for debugging and logging as well as some other
|
|
* simple helper functions.
|
|
*
|
|
* Russ Dill <Russ.Dill@asu.edu> 2001-2003
|
|
* Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
*/
|
|
|
|
#include "common.h"
|
|
|
|
const uint8_t MAC_BCAST_ADDR[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
|
|
|
void udhcp_make_pidfile(const char *pidfile)
|
|
{
|
|
/* Make sure fd 0,1,2 are open */
|
|
bb_sanitize_stdio();
|
|
|
|
/* Equivalent of doing a fflush after every \n */
|
|
setlinebuf(stdout);
|
|
|
|
/* Create pidfile */
|
|
if (pidfile && !write_pidfile(pidfile))
|
|
bb_perror_msg("cannot create pidfile %s", pidfile);
|
|
|
|
bb_info_msg("%s (v%s) started", applet_name, BB_VER);
|
|
}
|