Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
N
noVNC
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
noVNC
Commits
df6b7d73
Commit
df6b7d73
authored
Feb 10, 2014
by
Solly
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #327 from devicenull/master
Add support for connecting to TightVNC servers
parents
afbeb98c
d86cc2d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
1 deletion
+92
-1
rfb.js
include/rfb.js
+92
-1
No files found.
include/rfb.js
View file @
df6b7d73
...
@@ -45,6 +45,7 @@ var that = {}, // Public API methods
...
@@ -45,6 +45,7 @@ var that = {}, // Public API methods
rfb_version
=
0
,
rfb_version
=
0
,
rfb_max_version
=
3.8
,
rfb_max_version
=
3.8
,
rfb_auth_scheme
=
''
,
rfb_auth_scheme
=
''
,
rfb_tightvnc
=
false
,
// In preference order
// In preference order
...
@@ -694,7 +695,7 @@ init_msg = function() {
...
@@ -694,7 +695,7 @@ init_msg = function() {
types
=
ws
.
rQshiftBytes
(
num_types
);
types
=
ws
.
rQshiftBytes
(
num_types
);
Util
.
Debug
(
"Server security types: "
+
types
);
Util
.
Debug
(
"Server security types: "
+
types
);
for
(
i
=
0
;
i
<
types
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
types
.
length
;
i
+=
1
)
{
if
((
types
[
i
]
>
rfb_auth_scheme
)
&&
(
types
[
i
]
<
3
))
{
if
((
types
[
i
]
>
rfb_auth_scheme
)
&&
(
types
[
i
]
<
=
16
))
{
rfb_auth_scheme
=
types
[
i
];
rfb_auth_scheme
=
types
[
i
];
}
}
}
}
...
@@ -749,6 +750,68 @@ init_msg = function() {
...
@@ -749,6 +750,68 @@ init_msg = function() {
//Util.Debug("Sending DES encrypted auth response");
//Util.Debug("Sending DES encrypted auth response");
ws
.
send
(
response
);
ws
.
send
(
response
);
updateState
(
'SecurityResult'
);
updateState
(
'SecurityResult'
);
return
;
case
16
:
// TightVNC Security Type
if
(
ws
.
rQwait
(
"num tunnels"
,
4
))
{
return
false
;
}
var
numTunnels
=
ws
.
rQshift32
();
//console.log("Number of tunnels: "+numTunnels);
rfb_tightvnc
=
true
;
if
(
numTunnels
!=
0
)
{
fail
(
"Protocol requested tunnels, not currently supported. numTunnels: "
+
numTunnels
);
return
;
}
var
clientSupportedTypes
=
{
'STDVNOAUTH__'
:
1
,
'STDVVNCAUTH_'
:
2
};
var
serverSupportedTypes
=
[];
if
(
ws
.
rQwait
(
"sub auth count"
,
4
))
{
return
false
;
}
var
subAuthCount
=
ws
.
rQshift32
();
//console.log("Sub auth count: "+subAuthCount);
for
(
var
i
=
0
;
i
<
subAuthCount
;
i
++
)
{
if
(
ws
.
rQwait
(
"sub auth capabilities "
+
i
,
16
))
{
return
false
;
}
var
capNum
=
ws
.
rQshift32
();
var
capabilities
=
ws
.
rQshiftStr
(
12
);
//console.log("queue: "+ws.rQlen());
//console.log("auth type: "+capNum+": "+capabilities);
serverSupportedTypes
.
push
(
capabilities
);
}
for
(
var
authType
in
clientSupportedTypes
)
{
if
(
serverSupportedTypes
.
indexOf
(
authType
)
!=
-
1
)
{
//console.log("selected authType "+authType);
ws
.
send
([
0
,
0
,
0
,
clientSupportedTypes
[
authType
]]);
switch
(
authType
)
{
case
'STDVNOAUTH__'
:
// No authentication
updateState
(
'SecurityResult'
);
return
;
case
'STDVVNCAUTH_'
:
// VNC Authentication. Reenter auth handler to complete auth
rfb_auth_scheme
=
2
;
init_msg
();
return
;
default
:
fail
(
"Unsupported tiny auth scheme: "
+
authType
);
return
;
}
}
}
return
;
return
;
default
:
default
:
fail
(
"Unsupported auth scheme: "
+
rfb_auth_scheme
);
fail
(
"Unsupported auth scheme: "
+
rfb_auth_scheme
);
...
@@ -842,6 +905,34 @@ init_msg = function() {
...
@@ -842,6 +905,34 @@ init_msg = function() {
conf
.
true_color
=
false
;
conf
.
true_color
=
false
;
}
}
if
(
rfb_tightvnc
)
{
// In TightVNC mode, ServerInit message is extended
var
numServerMessages
=
ws
.
rQshift16
();
var
numClientMessages
=
ws
.
rQshift16
();
var
numEncodings
=
ws
.
rQshift16
();
ws
.
rQshift16
();
// padding
//console.log("numServerMessages "+numServerMessages);
//console.log("numClientMessages "+numClientMessages);
//console.log("numEncodings "+numEncodings);
for
(
var
i
=
0
;
i
<
numServerMessages
;
i
++
)
{
var
srvMsg
=
ws
.
rQshiftStr
(
16
);
//console.log("server message: "+srvMsg);
}
for
(
var
i
=
0
;
i
<
numClientMessages
;
i
++
)
{
var
clientMsg
=
ws
.
rQshiftStr
(
16
);
//console.log("client message: "+clientMsg);
}
for
(
var
i
=
0
;
i
<
numEncodings
;
i
++
)
{
var
encoding
=
ws
.
rQshiftStr
(
16
);
//console.log("encoding: "+encoding);
}
}
display
.
set_true_color
(
conf
.
true_color
);
display
.
set_true_color
(
conf
.
true_color
);
conf
.
onFBResize
(
that
,
fb_width
,
fb_height
);
conf
.
onFBResize
(
that
,
fb_width
,
fb_height
);
display
.
resize
(
fb_width
,
fb_height
);
display
.
resize
(
fb_width
,
fb_height
);
...
...
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