summary refs log tree commit diff stats
path: root/ui/spice-core.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * spice-core: fix warning when building with spice < 0.6.0Gerd Hoffmann2010-11-021-2/+2
| | | | | | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
| * spice-core: fix watching for write eventsHans de Goede2010-11-021-1/+1
| | | | | | | | Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
* | spice: add audioGerd Hoffmann2010-11-091-0/+1
|/ | | | | | | | | | | | | | | | | | | Add support for the spice audio interface. With this patch applied audio can be forwarded over the network from/to the spice client. Both recording and playback is supported. The driver is first in the driver list, but the can_be_default flag is set only in case spice is active. So if you have the spice protocol enabled the spice audio driver is the default one, otherwise whatever comes first after spice in the list. Overriding the default using QEMU_AUDIO_DRV works in any case. [ v2: audio codestyle: add spaces before open parenthesis ] [ v2: add const to silence array ] Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Cc: malc <av1474@comtv.ru> Signed-off-by: malc <av1474@comtv.ru>
* spice: add misc config optionsGerd Hoffmann2010-10-081-1/+28
| | | | | This patch adds a few more options to tweak spice server behavior. The documentation update chunk has the details ;)
* spice: add config options for the listening addressGerd Hoffmann2010-10-081-2/+11
| | | | | Make listening address configurable. Also add options to force using IPv4 or IPv6.
* spice: add config options for channel security.Gerd Hoffmann2010-10-081-0/+28
| | | | | | | This allows to enforce tls or plaintext usage for certain spice channels. [ v2: code style fixup ]
* spice: make compression configurable.Yonit Halperin2010-10-081-2/+75
| | | | | | | This patch adds options to the -spice command line switch to configure image compression. [ v2: speling fix in the documentation ]
* spice: tls supportGerd Hoffmann2010-10-081-4/+63
| | | | Add options to the -spice command line switch to setup tls.
* spice: add keyboardGerd Hoffmann2010-09-211-0/+2
| | | | | | Open keyboard channel. Now you can type into the spice client and the keyboard events are sent to your guest. You'll need some other display like vnc to actually see the guest responding to them though.
* spice: core bitsGerd Hoffmann2010-09-211-0/+187
Add -spice command line switch. Has support setting passwd and port for now. With this patch applied the spice client can successfully connect to qemu. You can't do anything useful yet though.