Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Pino Toscano
On Thursday, 20 June 2019 14:58:40 CEST Max Reitz wrote: > On 20.06.19 11:49, Pino Toscano wrote: > > On Tuesday, 18 June 2019 15:14:30 CEST Max Reitz wrote: > >> On 18.06.19 11:24, Pino Toscano wrote: > >>> Rewrite the implementation of the ssh block driver to use libssh instead > >>> of libssh2.

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Max Reitz
On 20.06.19 22:03, Pino Toscano wrote: > On Thursday, 20 June 2019 14:58:40 CEST Max Reitz wrote: >> On 20.06.19 11:49, Pino Toscano wrote: >>> On Tuesday, 18 June 2019 15:14:30 CEST Max Reitz wrote: On 18.06.19 11:24, Pino Toscano wrote: > Rewrite the implementation of the ssh block drive

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Max Reitz
On 20.06.19 12:11, Daniel P. Berrangé wrote: > On Tue, Jun 18, 2019 at 03:14:30PM +0200, Max Reitz wrote: >> On 18.06.19 11:24, Pino Toscano wrote: >>> Rewrite the implementation of the ssh block driver to use libssh instead >>> of libssh2. The libssh library has various advantages over libssh2: >

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Max Reitz
On 20.06.19 11:49, Pino Toscano wrote: > On Tuesday, 18 June 2019 15:14:30 CEST Max Reitz wrote: >> On 18.06.19 11:24, Pino Toscano wrote: >>> Rewrite the implementation of the ssh block driver to use libssh instead >>> of libssh2. The libssh library has various advantages over libssh2: >>> - easi

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Daniel P . Berrangé
On Tue, Jun 18, 2019 at 03:14:30PM +0200, Max Reitz wrote: > On 18.06.19 11:24, Pino Toscano wrote: > > Rewrite the implementation of the ssh block driver to use libssh instead > > of libssh2. The libssh library has various advantages over libssh2: > > - easier API for authentication (for example

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-20 Thread Pino Toscano
On Tuesday, 18 June 2019 15:14:30 CEST Max Reitz wrote: > On 18.06.19 11:24, Pino Toscano wrote: > > Rewrite the implementation of the ssh block driver to use libssh instead > > of libssh2. The libssh library has various advantages over libssh2: > > - easier API for authentication (for example for

Re: [Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-18 Thread Max Reitz
On 18.06.19 11:24, Pino Toscano wrote: > Rewrite the implementation of the ssh block driver to use libssh instead > of libssh2. The libssh library has various advantages over libssh2: > - easier API for authentication (for example for using ssh-agent) > - easier API for known_hosts handling > - su

[Qemu-devel] [PATCH v10] ssh: switch from libssh2 to libssh

2019-06-18 Thread Pino Toscano
Rewrite the implementation of the ssh block driver to use libssh instead of libssh2. The libssh library has various advantages over libssh2: - easier API for authentication (for example for using ssh-agent) - easier API for known_hosts handling - supports newer types of keys in known_hosts Use AP