From: Christian Mehlis Date: Mon, 18 Aug 2014 11:37:03 +0000 (+0200) Subject: dhcpv4: log reply in a more precise way X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=da9b89e3894c53ecb3c2dc37dff9ae1fb8e36460;p=project%2Fodhcpd.git dhcpv4: log reply in a more precise way --- diff --git a/src/dhcpv4.c b/src/dhcpv4.c index ebddb22..92a1397 100644 --- a/src/dhcpv4.c +++ b/src/dhcpv4.c @@ -479,10 +479,24 @@ static void handle_dhcpv4(void *addr, void *data, size_t len, ioctl(sock, SIOCSARP, &arp); } - syslog(LOG_WARNING, "sending %s to %x:%x:%x:%x:%x:%x", - dhcpv4_msg_to_string(msg), - req->chaddr[0],req->chaddr[1],req->chaddr[2], - req->chaddr[3],req->chaddr[4],req->chaddr[5]); + if (dest.sin_addr.s_addr == INADDR_BROADCAST) { + /* + * reply goes to IP broadcast -> MAC broadcast + */ + syslog(LOG_WARNING, "sending %s to ff:ff:ff:ff:ff:ff - %s", + dhcpv4_msg_to_string(msg), + inet_ntoa(dest.sin_addr)); + } else { + /* + * reply is send directly to IP, + * MAC is assumed to be the same as the request + */ + syslog(LOG_WARNING, "sending %s to %x:%x:%x:%x:%x:%x - %s", + dhcpv4_msg_to_string(msg), + req->chaddr[0],req->chaddr[1],req->chaddr[2], + req->chaddr[3],req->chaddr[4],req->chaddr[5], + inet_ntoa(dest.sin_addr)); + } sendto(sock, &reply, sizeof(reply), MSG_DONTWAIT, (struct sockaddr*)&dest, sizeof(dest));