Home | History | Annotate | Download | only in libnetutils

Lines Matching refs:LOGD

73     LOGD("%s", errmsg);
176 LOGD("--- dhcp %s (%d) ---",
181 LOGD("ip %s gw %s mask %s", addr, gway, mask);
182 if (info->dns1) LOGD("dns1: %s", ipaddr(info->dns1));
183 if (info->dns2) LOGD("dns2: %s", ipaddr(info->dns2));
184 LOGD("server %s, lease %d seconds",
276 LOGD("===== DHCP message:");
278 LOGD("Invalid length %d, should be %d", len, DHCP_MSG_FIXED_SIZE);
290 LOGD("op = %s (%d), htype = %d, hlen = %d, hops = %d",
292 LOGD("xid = 0x%08x secs = %d, flags = 0x%04x optlen = %d",
294 LOGD("ciaddr = %s", ipaddr(msg->ciaddr));
295 LOGD("yiaddr = %s", ipaddr(msg->yiaddr));
296 LOGD("siaddr = %s", ipaddr(msg->siaddr));
297 LOGD("giaddr = %s", ipaddr(msg->giaddr));
301 LOGD("chaddr = {%s}", buf);
319 LOGD("sname = '%s'", msg->sname);
320 LOGD("file = '%s'", msg->file);
353 LOGD("op %d len %d {%s} %s", x[0], optsz, buf, name == NULL ? "" : name);
373 if (verbose) LOGD("netcfg: Wrong size %d != %d\n", sz, DHCP_MSG_FIXED_SIZE);
377 if (verbose) LOGD("netcfg: Wrong Op %d != %d\n", reply->op, OP_BOOTREPLY);
381 if (verbose) LOGD("netcfg: Wrong Xid 0x%x != 0x%x\n", ntohl(reply->xid),
386 if (verbose) LOGD("netcfg: Wrong Htype %d != %d\n", reply->htype, msg->htype);
390 if (verbose) LOGD("netcfg: Wrong Hlen %d != %d\n", reply->hlen, msg->hlen);
394 if (verbose) LOGD("netcfg: Wrong chaddr %x != %x\n", *(reply->chaddr),*(msg->chaddr));
495 LOGD("receive_packet failed (%d): %s", r, strerror(errno));