qemu: monitor: Drop old monitor fields from 'struct _qemuMonitorMessage'

The fields are no longer used since we've deleted support for HMP-only
qemus. The HMP command pass-through works via a QMP command.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2022-02-14 16:02:29 +01:00
parent c82887a323
commit c5eb99a9d9

View File

@ -43,15 +43,10 @@ struct _qemuMonitorMessage {
int txOffset;
int txLength;
/* Used by the text monitor reply / error */
char *rxBuffer;
int rxLength;
/* Used by the JSON monitor to hold reply / error */
void *rxObject;
/* True if rxBuffer / rxObject are ready, or a
* fatal error occurred on the monitor channel
*/
/* True if rxObject is ready, or a fatal error occurred on the monitor channel */
bool finished;
};