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
d60fda11
Commit
d60fda11
authored
Oct 29, 2002
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed severe bug with sending fbupdates
parent
19c7fc02
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
CHANGES
CHANGES
+1
-0
main.c
main.c
+2
-1
rfbserver.c
rfbserver.c
+1
-1
No files found.
CHANGES
View file @
d60fda11
fixed severe bug (Const Kaplinsky)
got patch from Const Kaplisnky with CursorPosUpdate encoding and some Docs
sync'ed with newest RealVNC (ZRLE encoding)
a HTTP request for tunnelling was added (to fool strict web proxies)
...
...
main.c
View file @
d60fda11
...
...
@@ -766,7 +766,8 @@ rfbProcessEvents(rfbScreenInfoPtr rfbScreen,long usec)
i
=
rfbGetClientIterator
(
rfbScreen
);
cl
=
rfbClientIteratorNext
(
i
);
while
(
cl
)
{
if
(
cl
->
sock
>=
0
&&
(
!
cl
->
onHold
)
&&
FB_UPDATE_PENDING
(
cl
))
{
if
(
cl
->
sock
>=
0
&&
!
cl
->
onHold
&&
FB_UPDATE_PENDING
(
cl
)
&&
!
sraRgnEmpty
(
cl
->
requestedRegion
))
{
if
(
cl
->
screen
->
rfbDeferUpdateTime
==
0
)
{
rfbSendFramebufferUpdate
(
cl
,
cl
->
modifiedRegion
);
}
else
if
(
cl
->
startDeferring
.
tv_usec
==
0
)
{
...
...
rfbserver.c
View file @
d60fda11
...
...
@@ -1101,7 +1101,7 @@ rfbSendFramebufferUpdate(cl, givenUpdateRegion)
sraRgnSubtract
(
cl
->
modifiedRegion
,
updateRegion
);
sraRgnSubtract
(
cl
->
modifiedRegion
,
updateCopyRegion
);
/* sraRgnMakeEmpty(cl->requestedRegion); */
sraRgnMakeEmpty
(
cl
->
requestedRegion
);
sraRgnMakeEmpty
(
cl
->
copyRegion
);
cl
->
copyDX
=
0
;
cl
->
copyDY
=
0
;
...
...
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