Home | History | Annotate | Download | only in libnetutils

Lines Matching refs:LOGD

73     LOGD("%s", errmsg);
154 LOGD("--- dhcp %s (%d) ---",
158 LOGD("ip %s gw %s prefixLength %d", addr, gway, info->prefixLength);
159 if (info->dns1) LOGD("dns1: %s", ipaddr(info->dns1));
160 if (info->dns2) LOGD("dns2: %s", ipaddr(info->dns2));
161 LOGD("server %s, lease %d seconds",
253 LOGD("===== DHCP message:");
255 LOGD("Invalid length %d, should be %d", len, DHCP_MSG_FIXED_SIZE);
267 LOGD("op = %s (%d), htype = %d, hlen = %d, hops = %d",
269 LOGD("xid = 0x%08x secs = %d, flags = 0x%04x optlen = %d",
271 LOGD("ciaddr = %s", ipaddr(msg->ciaddr));
272 LOGD("yiaddr = %s", ipaddr(msg->yiaddr));
273 LOGD("siaddr = %s", ipaddr(msg->siaddr));
274 LOGD("giaddr = %s", ipaddr(msg->giaddr));
278 LOGD("chaddr = {%s}", buf);
296 LOGD("sname = '%s'", msg->sname);
297 LOGD("file = '%s'", msg->file);
330 LOGD("op %d len %d {%s} %s", x[0], optsz, buf, name == NULL ? "" : name);
350 if (verbose) LOGD("netcfg: Wrong size %d != %d\n", sz, DHCP_MSG_FIXED_SIZE);
354 if (verbose) LOGD("netcfg: Wrong Op %d != %d\n", reply->op, OP_BOOTREPLY);
358 if (verbose) LOGD("netcfg: Wrong Xid 0x%x != 0x%x\n", ntohl(reply->xid),
363 if (verbose) LOGD("netcfg: Wrong Htype %d != %d\n", reply->htype, msg->htype);
367 if (verbose) LOGD("netcfg: Wrong Hlen %d != %d\n", reply->hlen, msg->hlen);
371 if (verbose) LOGD("netcfg: Wrong chaddr %x != %x\n", *(reply->chaddr),*(msg->chaddr));
472 LOGD("receive_packet failed (%d): %s", r, strerror(errno));