mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
dbddf429dc
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>
33 lines
586 B
C
33 lines
586 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2007 Luca Bigliardi (shammash@artha.org).
|
|
*/
|
|
|
|
#ifndef __UM_VDE_H__
|
|
#define __UM_VDE_H__
|
|
|
|
struct vde_data {
|
|
char *vde_switch;
|
|
char *descr;
|
|
void *args;
|
|
void *conn;
|
|
void *dev;
|
|
};
|
|
|
|
struct vde_init {
|
|
char *vde_switch;
|
|
char *descr;
|
|
int port;
|
|
char *group;
|
|
int mode;
|
|
};
|
|
|
|
extern const struct net_user_info vde_user_info;
|
|
|
|
extern void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init);
|
|
|
|
extern int vde_user_read(void *conn, void *buf, int len);
|
|
extern int vde_user_write(void *conn, void *buf, int len);
|
|
|
|
#endif
|