| Crates.io | inputflow-qmp |
| lib.rs | inputflow-qmp |
| version | 0.1.0 |
| created_at | 2025-04-04 19:39:08.962124+00 |
| updated_at | 2025-04-04 19:39:08.962124+00 |
| description | inputflow user input abstract plugin framework |
| homepage | |
| repository | https://github.com/ConnorBP/inputflow |
| max_upload_size | |
| id | 1620663 |
| size | 34,437 |
This plugin enables controlling the mouse of your QEMU Virtual Machine instances via the QMP protocol. Currently tcp mode is preferred over unix sockets as unix sockets might have access errors when multiple devices try to acess it (i.e. memflow)
On QEMU via libvirt you can pass through the qmp configuration via a command line option to qemu like so:
<domain>
...
<qemu:commandline>
<qemu:arg value="-qmp"/>
<qemu:arg value="tcp:127.0.0.1:6448,server,nowait"/>
</qemu:commandline>
</domain>
or you can directly pass the parameter to qemu otherwise: -qmp tcp:127.0.0.1:6448,server,nowait