Re: [libvirt] [PATCH] BSD: implement virNetDev(Set|Clear)IPv4Address

2013-06-25 Thread Roman Bogorodskiy
Laine Stump wrote: There is a potential problem here. When this function was renamed from brAddInetAddress(), it was incorrectly given the IPv4 moniker. In fact, it is used to add either IPv4 or IPv6 addresses to the interface. In order for this to work correctly, you'll need to check the

Re: [libvirt] [PATCH] BSD: implement virNetDev(Set|Clear)IPv4Address

2013-06-24 Thread Daniel P. Berrange
On Sat, Jun 22, 2013 at 11:20:30AM +0400, Roman Bogorodskiy wrote: Provide an implementation of virNetDev(Set|Clear)IPv4Address based on BSD ifconfig tool in addition to 'ip' from Linux iproute2 package. --- configure.ac | 15 +++ src/util/virnetdev.c | 16

Re: [libvirt] [PATCH] BSD: implement virNetDev(Set|Clear)IPv4Address

2013-06-24 Thread Laine Stump
On 06/22/2013 03:20 AM, Roman Bogorodskiy wrote: Provide an implementation of virNetDev(Set|Clear)IPv4Address based on BSD ifconfig tool in addition to 'ip' from Linux iproute2 package. --- configure.ac | 15 +++ src/util/virnetdev.c | 16 2 files

[libvirt] [PATCH] BSD: implement virNetDev(Set|Clear)IPv4Address

2013-06-22 Thread Roman Bogorodskiy
Provide an implementation of virNetDev(Set|Clear)IPv4Address based on BSD ifconfig tool in addition to 'ip' from Linux iproute2 package. --- configure.ac | 15 +++ src/util/virnetdev.c | 16 2 files changed, 31 insertions(+) diff --git a/configure.ac