2010-03-17 12:08:17 +01:00
|
|
|
#ifndef VHOST_NET_H
|
|
|
|
#define VHOST_NET_H
|
|
|
|
|
|
|
|
#include "net.h"
|
|
|
|
|
|
|
|
struct vhost_net;
|
|
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
|
2012-07-24 17:35:13 +02:00
|
|
|
VHostNetState *vhost_net_init(NetClientState *backend, int devfd, bool force);
|
2010-03-17 12:08:17 +01:00
|
|
|
|
2011-02-01 21:13:42 +01:00
|
|
|
bool vhost_net_query(VHostNetState *net, VirtIODevice *dev);
|
2010-03-17 12:08:17 +01: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
|