dhcp: downgrade "got raw socket fd" message to log3, make log2 default max
log3 messages are very much redundant function old new delta change_listen_mode 322 302 -20 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
		@@ -116,7 +116,7 @@ config FEATURE_UDHCP_PORT
 | 
			
		||||
 | 
			
		||||
config UDHCP_DEBUG
 | 
			
		||||
	int "Maximum verbosity level (0..9)"
 | 
			
		||||
	default 9
 | 
			
		||||
	default 2
 | 
			
		||||
	range 0 9
 | 
			
		||||
	depends on UDHCPD || UDHCPC || UDHCPC6 || DHCPRELAY
 | 
			
		||||
	help
 | 
			
		||||
 
 | 
			
		||||
@@ -981,7 +981,7 @@ static int d6_raw_socket(int ifindex)
 | 
			
		||||
	log2("opening raw socket on ifindex %d", ifindex);
 | 
			
		||||
 | 
			
		||||
	fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IPV6));
 | 
			
		||||
	log2("got raw socket fd %d", fd);
 | 
			
		||||
	log3("got raw socket fd %d", fd);
 | 
			
		||||
 | 
			
		||||
	memset(&sock, 0, sizeof(sock)); /* let's be deterministic */
 | 
			
		||||
	sock.sll_family = AF_PACKET;
 | 
			
		||||
 
 | 
			
		||||
@@ -1017,7 +1017,7 @@ static int udhcp_raw_socket(int ifindex)
 | 
			
		||||
	 * SOCK_DGRAM: remove link-layer headers on input (SOCK_RAW keeps them)
 | 
			
		||||
	 * ETH_P_IP: want to receive only packets with IPv4 eth type
 | 
			
		||||
	 */
 | 
			
		||||
	log2("got raw socket fd");
 | 
			
		||||
	log3("got raw socket fd %d", fd);
 | 
			
		||||
 | 
			
		||||
	memset(&sock, 0, sizeof(sock)); /* let's be deterministic */
 | 
			
		||||
	sock.sll_family = AF_PACKET;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user