Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
22.07.2020 18:43, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 06:40:10PM +0300, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 18:21, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 06:04:53PM +0300, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 16:47, Vladimir Sementsov-Ogievskiy wro

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Daniel P . Berrangé
On Wed, Jul 22, 2020 at 06:40:10PM +0300, Vladimir Sementsov-Ogievskiy wrote: > 22.07.2020 18:21, Daniel P. Berrangé wrote: > > On Wed, Jul 22, 2020 at 06:04:53PM +0300, Vladimir Sementsov-Ogievskiy > > wrote: > > > 22.07.2020 16:47, Vladimir Sementsov-Ogievskiy wrote: > > > > 22.07.2020 15:53, Da

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
22.07.2020 18:21, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 06:04:53PM +0300, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 16:47, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 15:53, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 03:43:54PM +0300, Vladimir Sementsov-Ogievskiy wro

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Daniel P . Berrangé
On Wed, Jul 22, 2020 at 06:04:53PM +0300, Vladimir Sementsov-Ogievskiy wrote: > 22.07.2020 16:47, Vladimir Sementsov-Ogievskiy wrote: > > 22.07.2020 15:53, Daniel P. Berrangé wrote: > > > On Wed, Jul 22, 2020 at 03:43:54PM +0300, Vladimir Sementsov-Ogievskiy > > > wrote: > > > > 22.07.2020 14:21,

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
22.07.2020 16:47, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 15:53, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 03:43:54PM +0300, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 14:21, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 02:00:25PM +0300, Vladimir Sementsov-Ogievskiy wro

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
22.07.2020 15:53, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 03:43:54PM +0300, Vladimir Sementsov-Ogievskiy wrote: 22.07.2020 14:21, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 02:00:25PM +0300, Vladimir Sementsov-Ogievskiy wrote: 20.07.2020 21:29, Daniel P. Berrangé wrote: On Mo

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
22.07.2020 14:21, Daniel P. Berrangé wrote: On Wed, Jul 22, 2020 at 02:00:25PM +0300, Vladimir Sementsov-Ogievskiy wrote: 20.07.2020 21:29, Daniel P. Berrangé wrote: On Mon, Jul 20, 2020 at 09:07:14PM +0300, Vladimir Sementsov-Ogievskiy wrote: Utilize new socket API to make a non-blocking conn

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Daniel P . Berrangé
On Wed, Jul 22, 2020 at 03:43:54PM +0300, Vladimir Sementsov-Ogievskiy wrote: > 22.07.2020 14:21, Daniel P. Berrangé wrote: > > On Wed, Jul 22, 2020 at 02:00:25PM +0300, Vladimir Sementsov-Ogievskiy > > wrote: > > > 20.07.2020 21:29, Daniel P. Berrangé wrote: > > > > On Mon, Jul 20, 2020 at 09:07:

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Daniel P . Berrangé
On Wed, Jul 22, 2020 at 02:00:25PM +0300, Vladimir Sementsov-Ogievskiy wrote: > 20.07.2020 21:29, Daniel P. Berrangé wrote: > > On Mon, Jul 20, 2020 at 09:07:14PM +0300, Vladimir Sementsov-Ogievskiy > > wrote: > > > Utilize new socket API to make a non-blocking connect for inet sockets. > > > > >

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-22 Thread Vladimir Sementsov-Ogievskiy
20.07.2020 21:29, Daniel P. Berrangé wrote: On Mon, Jul 20, 2020 at 09:07:14PM +0300, Vladimir Sementsov-Ogievskiy wrote: Utilize new socket API to make a non-blocking connect for inet sockets. Signed-off-by: Vladimir Sementsov-Ogievskiy --- include/io/channel-socket.h | 14 +++ io/chan

Re: [PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-20 Thread Daniel P . Berrangé
On Mon, Jul 20, 2020 at 09:07:14PM +0300, Vladimir Sementsov-Ogievskiy wrote: > Utilize new socket API to make a non-blocking connect for inet sockets. > > Signed-off-by: Vladimir Sementsov-Ogievskiy > --- > include/io/channel-socket.h | 14 +++ > io/channel-socket.c | 74 +++

[PATCH 3/4] io/channel-socket: implement non-blocking connect

2020-07-20 Thread Vladimir Sementsov-Ogievskiy
Utilize new socket API to make a non-blocking connect for inet sockets. Signed-off-by: Vladimir Sementsov-Ogievskiy --- include/io/channel-socket.h | 14 +++ io/channel-socket.c | 74 + 2 files changed, 88 insertions(+) diff --git a/include/io/cha