inputflow-qmp 0.1.0

inputflow user input abstract plugin framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Input Flow QMP
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)

# QEMU Configuration
On QEMU via libvirt you can pass through the qmp configuration via a command line option to qemu like so:
```xml
<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`