97870c34b4
Convert files to use SPDX header. All files are licensed under the GPLv2. Signed-off-by: Alex Dewar <alex.dewar@gmx.co.uk> Signed-off-by: Richard Weinberger <richard@nod.at>
22 lines
349 B
C
22 lines
349 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
|
|
*/
|
|
|
|
#ifndef __UM_TUNTAP_H
|
|
#define __UM_TUNTAP_H
|
|
|
|
#include <net_user.h>
|
|
|
|
struct tuntap_data {
|
|
char *dev_name;
|
|
int fixed_config;
|
|
char *gate_addr;
|
|
int fd;
|
|
void *dev;
|
|
};
|
|
|
|
extern const struct net_user_info tuntap_user_info;
|
|
|
|
#endif
|