udhcpc[6]: make log2 messages for chaddr field indented like the rest
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
a6a3ad3273
commit
f625836e60
@ -1534,6 +1534,13 @@ int udhcpc_main(int argc UNUSED_PARAM, char **argv)
|
|||||||
*/
|
*/
|
||||||
if (send_renew(xid, server_addr, requested_ip) >= 0) {
|
if (send_renew(xid, server_addr, requested_ip) >= 0) {
|
||||||
timeout >>= 1;
|
timeout >>= 1;
|
||||||
|
//TODO: the timeout to receive an answer for our renew should not be selected
|
||||||
|
//with "timeout = lease_seconds / 2; ...; timeout = timeout / 2": it is often huge.
|
||||||
|
//Waiting e.g. 4*3600 seconds for a reply does not make sense
|
||||||
|
//(if reply isn't coming, we keep an open socket for hours),
|
||||||
|
//it should be something like 10 seconds.
|
||||||
|
//Also, it's probably best to try sending renew in kernel mode a few (3-5) times
|
||||||
|
//and fall back to raw mode if it does not work.
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/* else: error sending.
|
/* else: error sending.
|
||||||
|
@ -52,7 +52,6 @@ void FAST_FUNC udhcp_dump_packet(struct dhcp_packet *packet)
|
|||||||
" yiaddr %x"
|
" yiaddr %x"
|
||||||
" siaddr %x"
|
" siaddr %x"
|
||||||
" giaddr %x"
|
" giaddr %x"
|
||||||
//" chaddr %s"
|
|
||||||
//" sname %s"
|
//" sname %s"
|
||||||
//" file %s"
|
//" file %s"
|
||||||
//" cookie %x"
|
//" cookie %x"
|
||||||
@ -68,7 +67,6 @@ void FAST_FUNC udhcp_dump_packet(struct dhcp_packet *packet)
|
|||||||
, packet->yiaddr
|
, packet->yiaddr
|
||||||
, packet->siaddr_nip
|
, packet->siaddr_nip
|
||||||
, packet->gateway_nip
|
, packet->gateway_nip
|
||||||
//, packet->chaddr[16]
|
|
||||||
//, packet->sname[64]
|
//, packet->sname[64]
|
||||||
//, packet->file[128]
|
//, packet->file[128]
|
||||||
//, packet->cookie
|
//, packet->cookie
|
||||||
|
Loading…
Reference in New Issue
Block a user