/*1* Copyright (C) 2007 Luca Bigliardi ([email protected]).2* Licensed under the GPL.3*/45#ifndef __UM_VDE_H__6#define __UM_VDE_H__78struct vde_data {9char *vde_switch;10char *descr;11void *args;12void *conn;13void *dev;14};1516struct vde_init {17char *vde_switch;18char *descr;19int port;20char *group;21int mode;22};2324extern const struct net_user_info vde_user_info;2526extern void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init);2728extern int vde_user_read(void *conn, void *buf, int len);29extern int vde_user_write(void *conn, void *buf, int len);3031#endif323334