Re: [PATCH v8 11/12] python/qemu: Add ConsoleSocket for optional use in QEMUMachine

2020-06-01 Thread Robert Foley
Hi Philippe, On Sun, 31 May 2020 at 07:22, Philippe Mathieu-Daudé wrote: > > On 5/29/20 10:34 PM, Robert Foley wrote: > > We add the ConsoleSocket object, which has a socket interface > > and which will consume all arriving characters on the > > socket, placing them into an in memory buffer. > >

Re: [PATCH v8 11/12] python/qemu: Add ConsoleSocket for optional use in QEMUMachine

2020-05-31 Thread Philippe Mathieu-Daudé
On 5/29/20 10:34 PM, Robert Foley wrote: > We add the ConsoleSocket object, which has a socket interface > and which will consume all arriving characters on the > socket, placing them into an in memory buffer. > This will also provide those chars via recv() as > would a regular socket. > ConsoleSoc

[PATCH v8 11/12] python/qemu: Add ConsoleSocket for optional use in QEMUMachine

2020-05-29 Thread Robert Foley
We add the ConsoleSocket object, which has a socket interface and which will consume all arriving characters on the socket, placing them into an in memory buffer. This will also provide those chars via recv() as would a regular socket. ConsoleSocket also has the option of dumping the console bytes