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
8490de3f
Commit
8490de3f
authored
Oct 03, 2005
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add enablePseudoEncoding() to rfbProtocolExtension
parent
1a20edd7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
8 deletions
+34
-8
ChangeLog
ChangeLog
+6
-0
rfbserver.c
libvncserver/rfbserver.c
+24
-7
rfbtightserver.c
libvncserver/tightvnc-filetransfer/rfbtightserver.c
+1
-1
rfb.h
rfb/rfb.h
+3
-0
No files found.
ChangeLog
View file @
8490de3f
2005-10-03 Johannes E. Schindelin <Johannes.Schindelin@gmx.de>
* libvncserver/rfbserver.c, rfb/rfb.h: add a method to the
extension struct which is called to enable pseudo encodings.
This is a versatile mechanism to enable/disable custom
extensions with custom clients and servers.
2005-09-28 Rohit Kumar <rokumar@novell.com>
* examples/filetransfer.c, rfb/rfb.h, configure.ac,
libvncserver/{auth,cargs,main,rfbserver,sockets}.c,
...
...
libvncserver/rfbserver.c
View file @
8490de3f
...
...
@@ -105,7 +105,7 @@ rfbClientListInit(rfbScreenInfoPtr rfbScreen)
{
if
(
sizeof
(
rfbBool
)
!=
1
)
{
/* a sanity check */
fprintf
(
stderr
,
"rfbBool's size is not 1 (%d)!
\n
"
,
sizeof
(
rfbBool
));
fprintf
(
stderr
,
"rfbBool's size is not 1 (%d)!
\n
"
,
(
int
)
sizeof
(
rfbBool
));
/* we cannot continue, because rfbBool is supposed to be char everywhere */
exit
(
1
);
}
...
...
@@ -924,8 +924,22 @@ rfbProcessClientNormalMessage(rfbClientPtr cl)
#endif
}
else
#endif
rfbLog
(
"rfbProcessClientNormalMessage: ignoring unknown "
"encoding type %d
\n
"
,
(
int
)
enc
);
{
rfbExtensionData
*
e
;
for
(
e
=
cl
->
extensions
;
e
;)
{
rfbExtensionData
*
next
=
e
->
next
;
if
(
e
->
extension
->
enablePseudoEncoding
&&
e
->
extension
->
enablePseudoEncoding
(
cl
,
e
->
data
,
(
int
)
enc
))
/* ext handles this encoding */
break
;
e
=
next
;
}
if
(
e
==
NULL
)
rfbLog
(
"rfbProcessClientNormalMessage: ignoring"
"unknown encoding type %d
\n
"
,
(
int
)
enc
);
}
}
}
...
...
@@ -1071,12 +1085,15 @@ rfbProcessClientNormalMessage(rfbClientPtr cl)
default:
{
rfbExtensionData
*
extension
;
rfbExtensionData
*
e
,
*
next
;
for
(
extension
=
cl
->
extensions
;
extension
;
extension
=
extension
->
next
)
if
(
extension
->
extension
->
handleMessage
&&
extension
->
extension
->
handleMessage
(
cl
,
extension
->
data
,
&
msg
))
for
(
e
=
cl
->
extensions
;
e
;)
{
next
=
e
->
next
;
if
(
e
->
extension
->
handleMessage
&&
e
->
extension
->
handleMessage
(
cl
,
e
->
data
,
&
msg
))
return
;
e
=
next
;
}
if
(
cl
->
screen
->
processCustomClientMessage
(
cl
,
msg
.
type
))
{
rfbLog
(
"Warning: this program uses processCustomClientMessage, "
...
...
libvncserver/tightvnc-filetransfer/rfbtightserver.c
View file @
8490de3f
...
...
@@ -156,7 +156,6 @@ static void
rfbSendAuthCaps
(
cl
)
rfbClientPtr
cl
;
{
rfbBool
authRequired
;
rfbAuthenticationCapsMsg
caps
;
rfbCapabilityInfo
caplist
[
MAX_AUTH_CAPS
];
int
count
=
0
;
...
...
@@ -485,6 +484,7 @@ rfbHandleSecTypeTight(rfbClientPtr cl) {
rfbProtocolExtension
tightVncFileTransferExtension
=
{
NULL
,
rfbTightExtensionInit
,
NULL
,
rfbTightExtensionMsgHandler
,
rfbTightExtensionClientClose
,
rfbTightUsage
,
...
...
rfb/rfb.h
View file @
8490de3f
...
...
@@ -165,6 +165,9 @@ typedef struct _rfbProtocolExtension {
/* returns FALSE if extension should be deactivated for client.
if init == NULL, it stays activated. */
rfbBool
(
*
init
)(
struct
_rfbClientRec
*
client
,
void
*
data
);
/* returns TRUE if that pseudo encoding is handled by the extension */
rfbBool
(
*
enablePseudoEncoding
)(
struct
_rfbClientRec
*
client
,
void
*
data
,
int
encodingNumber
);
/* returns TRUE if message was handled */
rfbBool
(
*
handleMessage
)(
struct
_rfbClientRec
*
client
,
void
*
data
,
...
...
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