2010-03-17 11:08:17 +00:00
|
|
|
#ifndef VHOST_NET_H
|
|
|
|
#define VHOST_NET_H
|
|
|
|
|
|
|
|
#include "net.h"
|
|
|
|
|
|
|
|
struct vhost_net;
|
|
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
|
2011-02-01 20:13:42 +00:00
|
|
|
VHostNetState *vhost_net_init(VLANClientState *backend, int devfd, bool force);
|
2010-03-17 11:08:17 +00:00
|
|
|
|
2011-02-01 20:13:42 +00:00
|
|
|
bool vhost_net_query(VHostNetState *net, VirtIODevice *dev);
|
2010-03-17 11:08:17 +00:00
|
|
|
int vhost_net_start(VHostNetState *net, VirtIODevice *dev);
|
|
|
|
void vhost_net_stop(VHostNetState *net, VirtIODevice *dev);
|
|
|
|
|
|
|
|
void vhost_net_cleanup(VHostNetState *net);
|
|
|
|
|
|
|
|
unsigned vhost_net_get_features(VHostNetState *net, unsigned features);
|
|
|
|
void vhost_net_ack_features(VHostNetState *net, unsigned features);
|
|
|
|
|
|
|
|
#endif
|