Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-19 | qapi: move include files to include/qobject/ | Paolo Bonzini | |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||
2012-03-27 | qapi: add strict mode to input visitor | Paolo Bonzini | |
While QMP in general is designed so that it is possible to ignore unknown arguments, in the case of the QMP server it is better to reject them to detect bad clients. In fact, we're already doing this at the top level in the argument checker. To extend this to complex structures, add a mode to the input visitor where it checks for unvisited keys and raises an error if it finds one. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> | |||
2011-07-21 | qapi: add QMP input visitor | Michael Roth | |
A type of Visiter class that is used to walk a qobject's structure and assign each entry to the corresponding native C type. Command marshaling function will use this to pull out QMP command parameters recieved over the wire and pass them as native arguments to the corresponding C functions. Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com> Signed-off-by: Luiz Capitulino <lcapitulino@gmail.com> |