Signed-off-by: Amit Shah <amit.s...@redhat.com> --- net.h | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/net.h b/net.h index 0e9cc5d..8ad439a 100644 --- a/net.h +++ b/net.h @@ -20,10 +20,17 @@ typedef struct NICConf { VLANClientState *peer; } NICConf; +#define PROP_NET_MACADDR_DESC \ + "The MAC address for the NIC" +#define PROP_NET_VLAN_DESC \ + "The VLAN to associate the NIC with" +#define PROP_NET_NETDEV_DESC \ + "The peer net device to associate with this virtual NIC" + #define DEFINE_NIC_PROPERTIES(_state, _conf) \ - DEFINE_PROP_MACADDR("mac", _state, _conf.macaddr, ""), \ - DEFINE_PROP_VLAN("vlan", _state, _conf.vlan, ""), \ - DEFINE_PROP_NETDEV("netdev", _state, _conf.peer, "") + DEFINE_PROP_MACADDR("mac", _state, _conf.macaddr, PROP_NET_MACADDR_DESC),\ + DEFINE_PROP_VLAN("vlan", _state, _conf.vlan, PROP_NET_VLAN_DESC), \ + DEFINE_PROP_NETDEV("netdev", _state, _conf.peer, PROP_NET_NETDEV_DESC) /* VLANs support */ -- 1.7.0.1