Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
2c6bf923
Commit
2c6bf923
authored
Jul 11, 2009
by
runge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Setup for x11vnc version 0.9.9
parent
b6ee5f96
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
124 additions
and
118 deletions
+124
-118
prepare_x11vnc_dist.sh
prepare_x11vnc_dist.sh
+1
-1
README
x11vnc/README
+108
-102
help.c
x11vnc/help.c
+6
-6
x11vnc.1
x11vnc/x11vnc.1
+8
-8
x11vnc_defs.c
x11vnc/x11vnc_defs.c
+1
-1
No files found.
prepare_x11vnc_dist.sh
View file @
2c6bf923
#!/bin/bash
VERSION
=
"0.9.
8
"
VERSION
=
"0.9.
9
"
cd
"
$(
dirname
"
$0
"
)
"
...
...
x11vnc/README
View file @
2c6bf923
This diff is collapsed.
Click to expand it.
x11vnc/help.c
View file @
2c6bf923
...
...
@@ -268,10 +268,10 @@ void print_help(int mode) {
" an improvement over -flashcmap because it avoids the
\n
"
" flashing and shows each window in the correct color.
\n
"
"
\n
"
" This method
appear to work, but may still have bugs
\n
"
"
and it does hog resources. If there are multiple 8bpp
\n
"
"
windows using different colormaps, one may have to
\n
"
"
iconify all
but one for the colors to be correct.
\n
"
" This method
works OK, but may still have bugs and it
\n
"
"
does hog resources. If there are multiple 8bpp windows
\n
"
"
using different colormaps, one may have to iconify all
\n
"
" but one for the colors to be correct.
\n
"
"
\n
"
" There may be painting errors for clipping and switching
\n
"
" between windows of depths 8 and 24. Heuristics are
\n
"
...
...
@@ -1486,7 +1486,7 @@ void print_help(int mode) {
" Thus only passive network sniffing attacks are avoided:
\n
"
" the
\"
ANON
\"
method is susceptible to Man-In-The-Middle
\n
"
" attacks.
\"
ANON
\"
is not recommended; instead use
\n
"
" a SSL PEM you created or the defaut
\"
SAVE
\"
method.
\n
"
" a SSL PEM you created or the defau
l
t
\"
SAVE
\"
method.
\n
"
"
\n
"
" See -ssldir below to use a directory besides the
\n
"
" default ~/.vnc/certs
\n
"
...
...
@@ -1504,7 +1504,7 @@ void print_help(int mode) {
" Set to zero to poll forever. Set to a negative value
\n
"
" to use the builtin setting.
\n
"
"
\n
"
" Note that this value does
not
apply to the *initial* ssl
\n
"
" Note that this value does
NOT
apply to the *initial* ssl
\n
"
" init connection. The default timeout for that is 20sec.
\n
"
" Use -env SSL_INIT_TIMEOUT=n to modify it.
\n
"
"
\n
"
...
...
x11vnc/x11vnc.1
View file @
2c6bf923
.\" This file was automatically generated from x11vnc -help output.
.TH X11VNC "1" "Ju
ne
2009" "x11vnc " "User Commands"
.TH X11VNC "1" "Ju
ly
2009" "x11vnc " "User Commands"
.SH NAME
x11vnc - allow VNC connections to real X11 displays
version: 0.9.
8, lastmod: 2009-06-14
version: 0.9.
9, lastmod: 2009-07-11
.SH SYNOPSIS
.B x11vnc
[OPTION]...
...
...
@@ -276,10 +276,10 @@ windows (i.e. pure 8bpp), this mode is potentially
an improvement over \fB-flashcmap\fR because it avoids the
flashing and shows each window in the correct color.
.IP
This method
appear to work, but may still have bugs
and it does hog resources. If there are multiple 8bpp
windows using different colormaps, one may have to
iconify all
but one for the colors to be correct.
This method
works OK, but may still have bugs and it
does hog resources. If there are multiple 8bpp windows
using different colormaps, one may have to iconify all
but one for the colors to be correct.
.IP
There may be painting errors for clipping and switching
between windows of depths 8 and 24. Heuristics are
...
...
@@ -1669,7 +1669,7 @@ to authenticate either the VNC server or VNC client.
Thus only passive network sniffing attacks are avoided:
the "ANON" method is susceptible to Man-In-The-Middle
attacks. "ANON" is not recommended; instead use
a SSL PEM you created or the defaut "SAVE" method.
a SSL PEM you created or the defau
l
t "SAVE" method.
.IP
See \fB-ssldir\fR below to use a directory besides the
default ~/.vnc/certs
...
...
@@ -1689,7 +1689,7 @@ timeout (25s for about the first minute, 43200s later).
Set to zero to poll forever. Set to a negative value
to use the builtin setting.
.IP
Note that this value does
not
apply to the *initial* ssl
Note that this value does
NOT
apply to the *initial* ssl
init connection. The default timeout for that is 20sec.
Use \fB-env\fR SSL_INIT_TIMEOUT=n to modify it.
.PP
...
...
x11vnc/x11vnc_defs.c
View file @
2c6bf923
...
...
@@ -47,7 +47,7 @@ int xtrap_base_event_type = 0;
int
xdamage_base_event_type
=
0
;
/* date +'lastmod: %Y-%m-%d' */
char
lastmod
[]
=
"0.9.
8 lastmod: 2009-06-14
"
;
char
lastmod
[]
=
"0.9.
9 lastmod: 2009-07-11
"
;
/* X display info */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment