udhcpc[6]: on log level 1, three messages about raw socket is overkill
Move first two messages to log2 level: 08:46:32.23824 udhcpc: opening raw socket on ifindex 2 08:46:32.23825 udhcpc: got raw socket fd 08:46:32.26354 udhcpc: created raw socket Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -877,10 +877,10 @@ static int d6_raw_socket(int ifindex)
|
|||||||
};
|
};
|
||||||
#endif
|
#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));
|
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_family = AF_PACKET;
|
||||||
sock.sll_protocol = htons(ETH_P_IPV6);
|
sock.sll_protocol = htons(ETH_P_IPV6);
|
||||||
|
@@ -1001,14 +1001,14 @@ static int udhcp_raw_socket(int ifindex)
|
|||||||
int fd;
|
int fd;
|
||||||
struct sockaddr_ll sock;
|
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));
|
fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
|
||||||
/* ^^^^^
|
/* ^^^^^
|
||||||
* SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them)
|
* SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them)
|
||||||
* ETH_P_IP: want to receive only packets with IPv4 eth type
|
* 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_family = AF_PACKET;
|
||||||
sock.sll_protocol = htons(ETH_P_IP);
|
sock.sll_protocol = htons(ETH_P_IP);
|
||||||
|
Reference in New Issue
Block a user