Style and other non-functional changes in the UML networking code, including include tidying style violations copyright updates printks getting severities userspace code calling libc directly rather than using the os_* wrappers There's also a exit path cleanup in the pcap driver. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			349 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			349 B
			
		
	
	
	
		
			C
		
	
	
	
	
	
/* 
 | 
						|
 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
 | 
						|
 * Licensed under the GPL
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __DRIVERS_ETAP_H
 | 
						|
#define __DRIVERS_ETAP_H
 | 
						|
 | 
						|
#include "net_user.h"
 | 
						|
 | 
						|
struct ethertap_data {
 | 
						|
	char *dev_name;
 | 
						|
	char *gate_addr;
 | 
						|
	int data_fd;
 | 
						|
	int control_fd;
 | 
						|
	void *dev;
 | 
						|
};
 | 
						|
 | 
						|
extern const struct net_user_info ethertap_user_info;
 | 
						|
 | 
						|
#endif
 |