Re: [PATCH v4 6/7] util/qemu-sockets: Refactor inet_parse() to use QemuOpts

2025-05-19 Thread Daniel P . Berrangé
On Fri, May 16, 2025 at 05:56:58PM +0200, Juraj Marcin wrote: > From: Juraj Marcin > > Currently, the inet address parser cannot handle multiple options where > one is prefixed with the name of the other. For example, with the > 'keep-alive-idle' option added, the current parser cannot parse > '1

[PATCH v4 6/7] util/qemu-sockets: Refactor inet_parse() to use QemuOpts

2025-05-16 Thread Juraj Marcin
From: Juraj Marcin Currently, the inet address parser cannot handle multiple options where one is prefixed with the name of the other. For example, with the 'keep-alive-idle' option added, the current parser cannot parse '127.0.0.1:5000,keep-alive-idle=60,keep-alive' correctly. Instead, it fails