| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| | |
32 bits are not enough to keep track of all the pixels that might
flow through the system. Expand things to 64 bits, which should cover
all reasonable uses.
|
| |
| |
| |
| |
| |
| |
| | |
We need to check earlier if we are going to send this refresh or
not. Otherwise we send out pings pointlessly, and we also stall
the request loop with a client as we clear the requested region
without actually sending an update message.
|
| |
| |
| |
| |
| | |
It makes the logic a bit easier to follow, and also fixes the
case where just a fake update is needed.
|
| |
| |
| |
| | |
Fallout from beb59a43.
|
| |
| |
| |
| |
| | |
We need a larger range to handle the temporary overflow caused by
the Floyd-Steinberg dithering.
|
|\ \ |
|
| |/
| |
| |
| |
| | |
These are not allowed in C++, and have been made optional in C11.
So let's just get rid of them and any issues they may cause.
|
|\ \ |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \ |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
It doesn't belong on each socket server object as timers are global.
Force implementations to call the Timer system directly instead,
avoiding any middle men.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Get this timeout in to the timer system as well to make things
simpler and more robust.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Do a proper cleanup when one of the termination timeouts trigger
rather than just exiting on the spot. This makes sure we don't leave
stray stuff around, e.g. unix socket files.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This makes them more consistent with everything else, which makes
things clearer and also allows them to handle some corner cases
(e.g. only firing once).
|
|\| | |
| |_|/
|/| | |
|
| | |
| | |
| | |
| | | |
Add missing comments and clearly separate methods from attributes.
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
It is an internal function so it has no business being public.
Compare with CConnection where it is already private.
|
| | |
| | |
| | |
| | | |
It is static and only used from a single place, so let's inline it.
|
| | |
| | |
| | |
| | | |
It isn't true so remove those comments.
|
| | |
| | |
| | |
| | |
| | | |
It is functionality specific to WinVNC, so move the code there
to make things more clear.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This makes VNCServer a sufficiently complete interface that callers
don't need to know about the specific implementation (VNCServerST
currently). And assuming that all servers will use sockets is not
that outrageous.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Removed the last parts of VNCSConnectionST's back door in to
VNCServerST and let the parent class fully handle coordination of
clients, and access to the desktop.
|
| | |
| | |
| | |
| | |
| | | |
This makes it generally useful and other code doesn't have to
know of the specific sub-class.
|
| | |
| | |
| | |
| | |
| | | |
More encapsulation of functions that require coordinate between
clients.
|
| | |
| | |
| | |
| | |
| | |
| | | |
There is some client coordination needed which is better encapsulated
inside VNCServerST. This also helps hiding the desktop from the
individual clients.
|
| | |
| | |
| | |
| | |
| | | |
Avoid having VNCSConnectionST poking around in VNCServerST's internals
and instead access things via safer methods.
|
| | |
| | |
| | |
| | |
| | | |
Make things simpler by making this a part of the SDesktop interface
that always needs to be implemented.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Force queryConnection() to always call back to approveConnection()
rather than return special values. This makes the flow easier to
follow as it will be the same in all cases.
|
|\| | |
|
| |/
| |
| |
| |
| | |
Applets don't work anymore so remove everything that has to do
with serving them.
|
|\ \ |
|
| |/ |
|
|/
|
|
|
| |
Makes it easier to debug TLS issues, and to see the effect of
altering the priority string.
|
|
|
|
|
|
| |
In theory we could return to communicate without TLS after a
shutdown. It also makes sure the connection object isn't left
completely without streams.
|
|
|
|
|
|
| |
The streams depend on the session and can crash the program if they
are removed in the wrong order. Do a general cleanup of the life time
management of the streams.
|
|
|
|
|
| |
There is already an implicit connection between them, so let's make
it explicit. This allows easy lookup outside of the processMsg() function.
|
|
|
|
|
| |
If we leave it at something random we'll get an invalid delete
if the handshake fails.
|
|
|
|
|
| |
These are just confusing and obfuscating. Do a normal delete of
these objects instead.
|
|
|
|
|
|
|
| |
If we are still in slow start then we haven't discovered the actual
bandwidth limit yet. We also rely on the caller causing a bit of
congestion to detect the limit. So report a higher bandwidth estimate
than what we've currently tested in this scenario.
|
|
|
|
|
|
|
|
|
|
|
| |
Loosen the definition of "lossless" a bit so that we can use high
quality JPEG to refresh damaged parts of the screen. Although this
isn't bit perfect, it is close enough that most users will not be
able to tell the difference.
Level 9 is used rather than level 8 because some monitors have
exaggerated contrast that allows the artefacts from level 8 to be
noticeable.
|
| |
|
|
|
|
|
| |
Most encoders don't have a palette mode, so don't force them to
specify a dummy value to the Encoder base class constructor.
|
|
|
|
|
|
| |
If we have plenty of bandwidth then CPU might be the limiting resource.
Unfortunately we don't have a good number for that limit, so add a
conservative hard coded value.
|
|
|
|
|
| |
If we're out of time then we will definitely overshoot, so don't even
try.
|
|
|
|
|
| |
The update size is in bytes, but we are counting pixels. So make
sure we convert things properly before comparing.
|
|
|
|
|
|
|
|
| |
If an area recently changed then we can guess that it will most likely
change again very soon. In such a case it is meaningless to send a
lossless refresh as it will directly be overwritten. Keep track of
such areas and avoid refreshing them until we no longer see any
changes to them.
|
|
|
|
|
| |
The reference for "dueTime" wasn't properly updated when this code
was refactored from a static method to a normal object method.
|