QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
501 B
19 lines
501 B
#ifndef VHOST_NET_H
|
|
#define VHOST_NET_H
|
|
|
|
#include "net.h"
|
|
|
|
struct vhost_net;
|
|
typedef struct vhost_net VHostNetState;
|
|
|
|
VHostNetState *vhost_net_init(VLANClientState *backend, int devfd);
|
|
|
|
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
|
|
|