diff options
Diffstat (limited to 'net.h')
| -rw-r--r-- | net.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net.h b/net.h index adeef0c08d..29750567ed 100644 --- a/net.h +++ b/net.h @@ -100,6 +100,17 @@ void qemu_check_nic_model(NICInfo *nd, const char *model); int qemu_find_nic_model(NICInfo *nd, const char * const *models, const char *default_model); +ssize_t qemu_deliver_packet(NetClientState *sender, + unsigned flags, + const uint8_t *data, + size_t size, + void *opaque); +ssize_t qemu_deliver_packet_iov(NetClientState *sender, + unsigned flags, + const struct iovec *iov, + int iovcnt, + void *opaque); + void print_net_client(Monitor *mon, NetClientState *nc); void do_info_network(Monitor *mon); |