diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/d6_dhcpc.c | 4 | ||||
-rw-r--r-- | networking/udhcp/dhcpc.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/networking/udhcp/d6_dhcpc.c b/networking/udhcp/d6_dhcpc.c index ebf7934..66bc021 100644 --- a/networking/udhcp/d6_dhcpc.c +++ b/networking/udhcp/d6_dhcpc.c @@ -877,10 +877,10 @@ static int d6_raw_socket(int ifindex) }; #endif - log1("opening raw socket on ifindex %d", ifindex); //log2? + log2("opening raw socket on ifindex %d", ifindex); fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6)); - log1("got raw socket fd %d", fd); //log2? + log2("got raw socket fd %d", fd); sock.sll_family = AF_PACKET; sock.sll_protocol = htons(ETH_P_IPV6); diff --git a/networking/udhcp/dhcpc.c b/networking/udhcp/dhcpc.c index 1a66c61..932a956 100644 --- a/networking/udhcp/dhcpc.c +++ b/networking/udhcp/dhcpc.c @@ -1001,14 +1001,14 @@ static int udhcp_raw_socket(int ifindex) int fd; struct sockaddr_ll sock; - log1("opening raw socket on ifindex %d", ifindex); //log2? + log2("opening raw socket on ifindex %d", ifindex); fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)); /* ^^^^^ * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them) * ETH_P_IP: want to receive only packets with IPv4 eth type */ - log1("got raw socket fd"); //log2? + log2("got raw socket fd"); sock.sll_family = AF_PACKET; sock.sll_protocol = htons(ETH_P_IP); |