Skip to content
Snippets Groups Projects
  1. Jun 01, 2010
    • Jan Kiszka's avatar
      QMP: Introduce commands documentation · b40292e7
      Jan Kiszka authored
      
      One of the most important missing feature in QMP today is its
      supported commands documentation.
      
      The plan is to make it part of self-description support, however
      self-description is a big task we have been postponing for a
      long time now and still don't know when it's going to be done.
      
      In order not to compromise QMP adoption and make users' life easier,
      this commit adds a simple text documentation which fully describes
      all QMP supported commands.
      
      This is not ideal for a number of reasons (harder to maintain,
      text-only, etc) but does improve the current situation. To avoid at
      least divering from the user monitor help and texi snippets, QMP bits
      are also maintained inside qemu-monitor.hx, and hxtool is extended to
      generate a single text file from them.
      
      Signed-off-by: default avatarJan Kiszka <jan.kiszka@siemens.com>
      Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
      b40292e7
  2. May 19, 2010
  3. May 03, 2010
  4. Apr 18, 2010
  5. Mar 09, 2010
  6. Mar 08, 2010
  7. Feb 10, 2010
  8. Jan 19, 2010
    • Luiz Capitulino's avatar
      QMP: Introduce VNC_INITIALIZED event · 0d2ed46a
      Luiz Capitulino authored
      
      It's emitted when a VNC client session is activated by QEMU,
      client's information such as port, IP and auth ID (if the
      session is authenticated) are provided.
      
      Event example:
      
      { "event": "VNC_INITIALIZED",
          "timestamp": {"seconds": 1263475302, "microseconds": 150772},
          "data": {
              "server": { "auth": "sasl", "family": "ipv4",
                          "service": "5901", "host": "0.0.0.0"},
              "client": { "family": "ipv4", "service": "46089",
                          "host": "127.0.0.1", "sasl_username": "lcapitulino" } } }
      
      Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
      0d2ed46a
    • Luiz Capitulino's avatar
      QMP: Introduce VNC_DISCONNECTED event · 0d72f3d3
      Luiz Capitulino authored
      
      It's emitted when a VNC client disconnects from QEMU, client's
      information such as port and IP address are provided.
      
      Event example:
      
      { "event": "VNC_DISCONNECTED",
          "timestamp": { "seconds": 1262976601, "microseconds": 975795 },
          "data": {
              "server": { "auth": "sasl", "family": "ipv4",
                          "service": "5901", "host": "0.0.0.0" },
              "client": { "family": "ipv4", "service": "58425",
                          "host": "127.0.0.1", "sasl_username": "foo" } } }
      
      Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
      0d72f3d3
    • Luiz Capitulino's avatar
      QMP: Introduce VNC_CONNECTED event · 586153d9
      Luiz Capitulino authored
      
      It's emitted when a VNC client connects to QEMU, client's information
      such as port and IP address are provided.
      
      Note that this event is emitted right when the connection is
      established. This means that it happens before authentication
      procedure and session initialization.
      
      Event example:
      
      { "event": "VNC_CONNECTED",
          "timestamp": { "seconds": 1262976601, "microseconds": 975795 },
          "data": {
              "server": { "auth": "sasl", "family": "ipv4",
                          "service": "5901", "host": "0.0.0.0" },
              "client": { "family": "ipv4", "service": "58425",
                          "host": "127.0.0.1" } } }
      
      Signed-off-by: default avatarLuiz Capitulino <lcapitulino@redhat.com>
      Signed-off-by: default avatarAnthony Liguori <aliguori@us.ibm.com>
      586153d9
  9. Dec 19, 2009
  10. Dec 07, 2009
  11. Dec 03, 2009
Loading