Lines Matching refs:help

58 parser.add_argument('--xorg', default=which('Xorg'), help='specify the path to the Xorg binary')
59 parser.add_argument('--config', default='spiceqxl.xorg.conf', help='specify the path to the Xspice configuration')
60 parser.add_argument('--auto', action='store_true', help='automatically create a temporary xorg.conf and start the X server')
61 parser.add_argument('--xsession', help='if given, will run after Xorg launch. Should be a program like x-session-manager')
64 add_boolean('--disable-ticketing', help="do not require a client password")
65 parser.add_argument('--password', help="set the password required to connect to the server")
66 add_boolean('--sasl', help="use SASL to authenticate to the server")
69 parser.add_argument('--port', type=int, help="use the specified port as Spice's regular unencrypted port")
70 parser.add_argument('--tls-port', type=int, help='use the specified port as a TLS (encrypted) port', default=0)
71 parser.add_argument('--x509-dir', help="set the directory where the CA certificate, server key and server certificate are searched for TLS, using the same predefined names QEMU uses")
72 parser.add_argument('--cacert-file', help="set the CA certificate file location for TLS")
73 parser.add_argument('--x509-key-file', help="set the server key file location for TLS")
74 parser.add_argument('--x509-key-password', help="set the server key's password for TLS")
75 parser.add_argument('--x509-cert-file', help="set the server certificate file location for TLS")
76 parser.add_argument('--dh-file', help="set the server DH file location for TLS")
77 parser.add_argument('--tls-ciphers', help="set the TLS ciphers preference order")
78 add_boolean('--ipv4-only', help="only accept IP v4 connections")
79 add_boolean('--ipv6-only', help="only accept IP v6 connections")
80 parser.add_argument('--exit-on-disconnect', action='store_true', help='exit the X server when any client disconnects')
83 parser.add_argument('--numheads', type=int, help='number of virtual heads to create')
88 help="set jpeg wan compression")
91 help="set zlib glz wan compressions")
95 help="set image compression")
96 parser.add_argument('--deferred-fps', type=int, help='if non zero, the driver will render all operations to the frame buffer, and keep track of a changed rectangle list. The changed rectangles will be transmitted at the rate requested (e.g. 10 frames per second). This can dramatically reduce network bandwidth for some use cases')
99 help='set the streaming video method')
100 parser.add_argument('--video-codecs', help='set a semicolon-separated list of preferred video codecs to use. Each takes the form encoder:codec, with spice:mjpeg being the default and other options being provided by gstreamer for the mjpeg, vp8 and h264 codecs')
103 parser.add_argument('--vdagent', action='store_true', dest='vdagent_enabled', default=False, help='launch vdagent & vdagentd. They provide clipboard & resolution automation')
104 parser.add_argument('--vdagent-virtio-path', help='virtio socket path used by vdagentd')
105 parser.add_argument('--vdagent-uinput-path', help='uinput socket path used by vdagent')
106 parser.add_argument('--vdagent-udcs-path', help='Unix domain socket path used by vdagent and vdagentd')
107 parser.add_argument('--vdagentd-exec', help='path to spice-vdagentd (used with --vdagent)')
108 parser.add_argument('--vdagent-exec', help='path to spice-vdagent (used with --vdagent)')
109 parser.add_argument('--vdagent-no-launch', default=True, action='store_false', dest='vdagent_launch', help='do not launch vdagent & vdagentd, used for debugging or if some external script wants to take care of that')
110 parser.add_argument('--vdagent-uid', default=str(os.getuid()), help='set vdagent user id. changing it makes sense only in conjunction with --vdagent-no-launch')
111 parser.add_argument('--vdagent-gid', default=str(os.getgid()), help='set vdagent group id. changing it makes sense only in conjunction with --vdagent-no-launch')
112 parser.add_argument('--audio-fifo-dir', help="if a directory is given, any file in that directory will be read for audio data to be sent to the client. This is designed to work with PulseAudio's module-pipe-sink")
120 #parser.add_argument('--playback-compression', choices=['0', '1'], help='enabled by default')