Add VNC reverse connections, by Eddie Kohler.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3951 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
balrog 2008-02-03 02:54:04 +00:00
parent 3d575329a5
commit 3aa3eea310
2 changed files with 54 additions and 21 deletions

View file

@ -421,21 +421,21 @@ syntax for the @var{display} is
@table @code
@item @var{interface}:@var{d}
@item @var{host}:@var{d}
TCP connections will only be allowed from @var{interface} on display @var{d}.
By convention the TCP port is 5900+@var{d}. Optionally, @var{interface} can
be omitted in which case the server will bind to all interfaces.
TCP connections will only be allowed from @var{host} on display @var{d}.
By convention the TCP port is 5900+@var{d}. Optionally, @var{host} can
be omitted in which case the server will accept connections from any host.
@item @var{unix}:@var{path}
@item @code{unix}:@var{path}
Connections will be allowed over UNIX domain sockets where @var{path} is the
location of a unix socket to listen for connections on.
@item none
VNC is initialized by not started. The monitor @code{change} command can be used
to later start the VNC server.
VNC is initialized but not started. The monitor @code{change} command
can be used to later start the VNC server.
@end table
@ -444,6 +444,13 @@ separated by commas. Valid options are
@table @code
@item reverse
Connect to a listening VNC client via a ``reverse'' connection. The
client is specified by the @var{display}. For reverse network
connections (@var{host}:@var{d},@code{reverse}), the @var{d} argument
is a TCP port number, not a display number.
@item password
Require that password based authentication is used for client connections.