Home
last modified time | relevance | path

Searched refs:bb_info_msg (Results 1 – 18 of 18) sorted by relevance

/busybox-1.35.0/networking/
Difplugd.c328 bb_info_msg("executing '%s %s %s'", G.script_name, G.iface, action); in run_script()
347 bb_info_msg("exit code: %d", r & 0xff); in run_script()
416 bb_info_msg("using interface %s%s with driver<%s> (version: %s)", in maybe_up_new_iface()
449 bb_info_msg("using %s detection mode", method_table[i].name); in detect_link()
626 bb_info_msg("started: %s", bb_banner); in ifplugd_main()
643 bb_info_msg("interface %s", in ifplugd_main()
651 bb_info_msg("link is %s", iface_status_str); in ifplugd_main()
706 bb_info_msg("interface %sappeared", in ifplugd_main()
724 bb_info_msg("link is %s", iface_status_str); in ifplugd_main()
Ddnsd.c136 bb_info_msg("name:%s, ip:%s", token[0], token[1]); in parse_conf_file()
448 bb_info_msg("'%s'->'%s'", query_string, answstr); in process_packet()
549 bb_info_msg("accepting UDP packets on %s", p); in dnsd_main()
Dzcip.c197 bb_info_msg(fmt, argv[2], argv[0], addr); in run()
341 bb_info_msg("start, interface %s", argv_intf); in zcip_main()
Dtftp.c253 bb_info_msg("using blksize %u", blksize); in tftp_blksize_check()
Dntpd.c1050 bb_info_msg("setting time to %s.%06u (offset %+fs)", buf, (unsigned)tvn.tv_usec, offset); in step_time()
1969bb_info_msg("reply from %s: offset:%+f delay:%f status:0x%02x strat:%d refid:0x%08x rootdelay:%f r… in recv_and_process_peer_pkt()
/busybox-1.35.0/networking/udhcp/
Dd6_dhcpc.c731 bb_info_msg("sending %s", "discover"); in send_d6_discover()
788 bb_info_msg("sending %s", "select"); in send_d6_select()
861 bb_info_msg("sending %s", "renew"); in send_d6_renew()
896 bb_info_msg("sending %s", "release"); in send_d6_release()
1558 bb_info_msg("received %s", "SIGTERM"); in udhcpc6_main()
1619 bb_info_msg("received DHCP NAK (%u)", option->data[4]); in udhcpc6_main()
1743 bb_info_msg("no %s option%s", "IA_NA", ", ignoring packet"); in udhcpc6_main()
1747 bb_info_msg("%s option is too short:%d bytes", in udhcpc6_main()
1756 bb_info_msg("no %s option%s", "IAADDR", ", ignoring packet"); in udhcpc6_main()
1760 bb_info_msg("%s option is too short:%d bytes", in udhcpc6_main()
[all …]
Dcommon.h298 # define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0)
303 # define log2(...) do { if (dhcp_verbose >= 2) bb_info_msg(__VA_ARGS__); } while (0)
311 # define log3(...) do { if (dhcp_verbose >= 3) bb_info_msg(__VA_ARGS__); } while (0)
Ddhcpd.c99 bb_info_msg("static lease: mac:%02x:%02x:%02x:%02x:%02x:%02x nip:%x", in add_static_lease()
263 bb_info_msg("%s belongs to someone, reserving it for %u seconds", in nobody_responds_to_arp()
636 bb_info_msg(fmt, inet_ntoa(addr)); in send_packet_verbose()
1013 bb_info_msg("received %s", "SIGUSR1"); in udhcpd_main()
1018 bb_info_msg("received %s", "SIGTERM"); in udhcpd_main()
1045 bb_info_msg("MAC length != 6%s", ", ignoring packet"); in udhcpd_main()
1049 bb_info_msg("not a REQUEST%s", ", ignoring packet"); in udhcpd_main()
1054 bb_info_msg("no or bad message type option%s", ", ignoring packet"); in udhcpd_main()
1073 bb_info_msg("found static lease: %x", static_lease_nip); in udhcpd_main()
Dpacket.c43 bb_info_msg( in udhcp_dump_packet()
76 bb_info_msg(" chaddr %s", buf); in udhcp_dump_packet()
Ddhcpc.c783 bb_info_msg("broadcasting select for %s, server %s", in send_select()
825 bb_info_msg("sending renew to server %s", inet_ntoa(temp_addr)); in send_renew()
872 bb_info_msg("sending %s", "release"); in send_release()
1132 bb_info_msg("unicasting a release of %s to %s", in perform_release()
1612 bb_info_msg("received %s", "SIGTERM"); in udhcpc_main()
1735 bb_info_msg("lease of %s obtained from %s, lease time %u%s", in udhcpc_main()
1825 bb_info_msg("received %s", "DHCP NAK"); in udhcpc_main()
Dd6_packet.c21 bb_info_msg( in d6_dump_packet()
Dcommon.c202 bb_info_msg("%s: 0x%02x %s", pfx, opt[OPT_CODE], buf); in log_option()
/busybox-1.35.0/loginutils/
Dchpasswd.c109 bb_info_msg("password for '%s' changed", name); in chpasswd_main()
Dpasswd.c231 bb_info_msg("password for %s changed by %s", name, myname); in passwd_main()
/busybox-1.35.0/libbb/
Dverror_msg.c192 void FAST_FUNC bb_info_msg(const char *s, ...) in bb_info_msg() function
203 bb_info_msg("%s", s); in bb_simple_info_msg()
/busybox-1.35.0/miscutils/
Dcrond.c1109 bb_info_msg("time disparity of %ld minutes detected", dt / 60); in crond_main()
Ddevfsd.c344 #define info_logger(p, fmt, args...) bb_info_msg(fmt, ## args)
/busybox-1.35.0/include/
Dlibbb.h1442 void bb_info_msg(const char *s, ...) __attribute__ ((format (printf, 1, 2))) FAST_FUNC;
1446 #define bb_info_msg bb_error_msg macro
1486 #define bb_info_msg(...) BB_MSG(_info_msg, BB_MSG_KIND(__VA_ARGS__), __VA_ARGS__) macro