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
10c61b53
Commit
10c61b53
authored
Mar 27, 2006
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ignore maxRectsPerUpdate when encoding is Zlib (thanks scarr)
parent
199ec23a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
AUTHORS
AUTHORS
+2
-1
ChangeLog
ChangeLog
+4
-0
rfbserver.c
libvncserver/rfbserver.c
+2
-0
No files found.
AUTHORS
View file @
10c61b53
...
...
@@ -28,7 +28,8 @@ email!): Akira Hatakeyama, Karl J. Runge, Justin "Zippy" Dearing,
Oliver Mihatsch, Greg Sternberg, Werner Hofer, Giampiero Giancipoli,
Glenn Mabutt, Paul Kreiner, Erik Kunze, Mike Frysinger, Martin Waitz,
Mark McLoughlin, Paul Fox, Juan Jose Costello, Andre Leiadella,
Alberto Lusiani, Malvina Mazin, Dave Stuart, Rohit Kumar, and Donald Dugger.
Alberto Lusiani, Malvina Mazin, Dave Stuart, Rohit Kumar, Donald Dugger,
and Steven Carr.
Probably I forgot quite a few people sending a patch here and there, which
really made a difference. Without those, some obscure bugs still would
...
...
ChangeLog
View file @
10c61b53
2006-03-27 Steven Carr <scarr@jsa-usa.com>
* rfbserver.c: Zlib encoding cannot have a limit via
maxRectsPerUpdate
2006-02-28 Donald Dugger <donald.d.dugger@intel.com>
* rfb.h, sockets.c, main.c: add a flag to handle all pending
input events instead of one at a time.
...
...
libvncserver/rfbserver.c
View file @
10c61b53
...
...
@@ -1383,6 +1383,8 @@ rfbSendFramebufferUpdate(rfbClientPtr cl,
&&
cl
->
preferredEncoding
!=
rfbEncodingTight
/* XXX Should rfbEncodingCoRRE be in here? */
&&
cl
->
preferredEncoding
!=
rfbEncodingCoRRE
/* Zlib encoding splits rectangles up into smaller chunks */
&&
cl
->
preferredEncoding
!=
rfbEncodingZlib
#endif
#endif
&&
nUpdateRegionRects
>
cl
->
screen
->
maxRectsPerUpdate
)
{
...
...
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