memory: unify loops to sync dirty log bitmap
[qemu/ar7.git] / net / hub.h
blob6a16f0487a1f5a6f6d4f770e3e117b35c6a18103
1 /*
2 * Hub net client
4 * Copyright IBM, Corp. 2012
6 * Authors:
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
8 * Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
10 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
11 * See the COPYING.LIB file in the top-level directory.
15 #ifndef NET_HUB_H
16 #define NET_HUB_H
18 #include "qemu-common.h"
20 NetClientState *net_hub_add_port(int hub_id, const char *name,
21 NetClientState *hubpeer);
22 NetClientState *net_hub_find_client_by_name(int hub_id, const char *name);
23 void net_hub_info(Monitor *mon);
24 void net_hub_check_clients(void);
25 bool net_hub_flush(NetClientState *nc);
27 #endif /* NET_HUB_H */