Re: [libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-03-01 Thread Ján Tomko
(Replying to myself to correct some mistakes) On 02/26/13 11:56, Ján Tomko wrote: On 02/19/13 17:36, John Ferlan wrote: On 02/15/2013 05:13 AM, Peter Krempa wrote: On 02/15/13 11:00, Ján Tomko wrote: } } +if (getaddrinfo(hostname, NULL, NULL, info)) { +

Re: [libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-26 Thread Ján Tomko
Sorry, I only noticed your reply today. On 02/19/13 17:36, John Ferlan wrote: On 02/15/2013 05:13 AM, Peter Krempa wrote: On 02/15/13 11:00, Ján Tomko wrote: Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message

[libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-25 Thread Ján Tomko
Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message before. To be able to migrate over IPv6, QEMU needs to listen on [::] instead of 0.0.0.0. This patch adds a call to getaddrinfo and sets the listen address based on

Re: [libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-25 Thread Eric Blake
On 02/25/2013 07:15 AM, Ján Tomko wrote: Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message before. To be able to migrate over IPv6, QEMU needs to listen on [::] instead of 0.0.0.0. This patch adds a call to

Re: [libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-19 Thread John Ferlan
On 02/15/2013 05:13 AM, Peter Krempa wrote: On 02/15/13 11:00, Ján Tomko wrote: Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message before. To be able to migrate over IPv6, QEMU needs to listen on [::] instead

[libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-15 Thread Ján Tomko
Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message before. To be able to migrate over IPv6, QEMU needs to listen on [::] instead of 0.0.0.0. This patch adds a call to getaddrinfo and sets the listen address based on

Re: [libvirt] [PATCH] qemu: enable direct migration over IPv6

2013-02-15 Thread Peter Krempa
On 02/15/13 11:00, Ján Tomko wrote: Use virURIParse in qemuMigrationPrepareDirect to allow parsing IPv6 addresses, which would cause an 'incorrect :port' error message before. To be able to migrate over IPv6, QEMU needs to listen on [::] instead of 0.0.0.0. This patch adds a call to getaddrinfo