Ben Klopfenstein
d7c0b34b62
libvncclient: Unix sockets support by Ben Klopfenstein
...
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho
3d2eab575e
clean up build flags
...
The flag handling (both compiler options and include paths) are a mess at
the moment. There is no point in forcing "-O2 -g" when these are already
the defaults, and if someone changes the defaults, chances are good they
don't want you clobbering their choices.
The -Wall flag should be handled in configure and thrown into CFLAGS once
rather than every Makefile.am. Plus, this way we can control which
compilers the flag actually gets used with.
Finally, the INCLUDES variable is for -I paths, not AM_CFLAGS. Nor should
it contain -I. as this is already in the default includes setup.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
16 years ago
dscho
26b79b89db
ZYWRLE patch for libvncclient (thanks Noriaki Yamazaki)
...
Highlite:
* use qualityLevel/zlib_buffer. No new variable is needed.
* Change coding style to recursive fashion.
* Change meaning of qualityLevel== 9 for easy calc zywrle_level:
old:zywrle_level== 1
new:disable ZYWRLE(same as ZRLE)
so, we should not use this value for compatible reason.
* Color mode handling isn't complete.
I provided and checked 16 bit colors(RGB555,RGB565) and
some color mode of 32 bit colors for little endian mode.
we must make and check 24 bit colors and big endian mode.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
17 years ago
dscho
eb2eeed97e
LibVNCClient: if the GotRect hook is set, override default op.
17 years ago
runge
0f162f1f0b
argv > 0 doesn't make sense for a pointer; assuming argv != NULL.
18 years ago
dscho
ca805667e6
Build shared libraries per default
...
Thanks to Guillaume Rousse, we now use libtool to build shared libraries.
18 years ago
dscho
14b290384a
LibVNCClient: some users do not want to get whole-screen updates; introduce client->updateRect for that
18 years ago
dscho
35d481a783
sometimes zrle sends too many bytes; play safe
18 years ago
runge
1f8da9bde3
libvncclient: add GotCursorShape() and GotCopyRect(); x11vnc dep on libvncclient
18 years ago
dscho
6cfd9afee9
make cut text handling using a hook
18 years ago
steven_carr
a60ee2ee9f
RFB 3.8 clients are well informed
19 years ago
steven_carr
ccdbe8f325
The great UltraVNC Compatibility Commit
19 years ago
runge
347c4a9847
fix some build issues WRT ultravnc code.
19 years ago
steven_carr
0d734ad896
Server Capability Encodings
...
rfbEncodingSupportedEncodings - What encodings are supported?
rfbEncodingSupportedMessages - What message types are supported?
rfbEncodingServerIdentity - What is the servers version string?
ie: "x11vnc: 0.8.1 lastmod: 2006-04-25 (LibVNCServer 0.9pre)"
19 years ago
steven_carr
2eded94f7b
UltraVNC with scaling, will send rectangles with a zero W or H
...
We need to process the rectangle (especially if it a type that contains
subrectangles or any kind of compression). UltraVNC should be fixed to
prevent these useless rectangles from being sent.
19 years ago
steven_carr
5865f0c4b7
Client side support for PalmVNC/UltraVNC 'Server Side Scaling'
19 years ago
steven_carr
afa9fae024
Ultra Encoding added. Tested against UltraVNC V1.01
19 years ago
steven_carr
e57c4dcd71
CopyRectangle() BPP!=8 bug fixed
19 years ago
steven_carr
18cd366896
Eliminate incompatible pointer assignment warning (gcc 4.0.1)
19 years ago
steven_carr
422491c98a
signed vs unsigned warnings eliminated (gcc 4.0.1)
19 years ago
dscho
7602f0e750
libvncclient: support changing of framebuffer size; make SDLvncviewer use it
19 years ago
runge
3c80351a1c
Make VPATH building work with -I $(top_srcdir) for rfb/rfb.h
19 years ago
dscho
1602b345f3
add KeyboardLedState extension
19 years ago
dscho
199ec23a05
libvncclient: take -compress <level> and -quality <level> command line arguments
19 years ago
runge
def3012663
fix client non-jpeg/libz builds
19 years ago
dscho
1b81e342cb
assorted fixes for MinGW32
19 years ago
dscho
3a8d4bdbe6
work around write() returning ENOENT on Solaris 2.7
19 years ago
dscho
9e78be39cc
one more memory leak
19 years ago
dscho
61204490ce
plug memory leaks
19 years ago
runge
8eb18f6cd8
fix deadlock from rfbReleaseExtensionIterator(), fix no libz/libjpeg builds, disable tightvnc-filetransfer if no libpthread, add --without-pthread option, rm // comments, set NAME_MAX if not defined, x11vnc: throttle load if fb update requests not taking place.
19 years ago
dscho
194a76df11
add an extension mechanism for LibVNCClient, modify the client data handling
...
so that more than one data structure can be attached, and add an example
to speak the client part of the back channel.
19 years ago
dscho
5c1fdb47d3
fix warning
19 years ago
dscho
808b6a0b23
do it right: it is not DEFINES, but AM_CFLAGS
19 years ago
dscho
0a909fde7a
This monster commit contains support for TightVNC's file transfer protocol.
...
Thank you very much, Rohit!
19 years ago
dscho
462ffd3f3e
fix annoying zrle decoding bug
20 years ago
dscho
8f4b4e267d
do distribute and depend on zrle.c
20 years ago
dscho
b225ee993a
implement ZRLE decoding
20 years ago
dscho
1b830d0446
init a structure *before* using it...
20 years ago
dscho
53387007ba
remove wrong comment
20 years ago
dscho
669b4c8685
make zlib and tight handling thread safe (static -> rfbClient)
20 years ago
dscho
ee52441372
hide strict ansi stuff if not explicitely turned on; actually use the socklen_t test from configure.ac
20 years ago
dscho
8bee4eb990
ANSIfy, fix some warnings from Linus' sparse
20 years ago
runge
b8b96689bf
add '-listen ipaddr' option
20 years ago
dscho
ba10bceedd
if no argc & argv are passed, honour the serverHost&serverPort which was set by the application
20 years ago
dscho
b7dae538f6
argc and argv may be zero (which means to ignore them)
20 years ago
dscho
658b65ad0c
support MinGW32!
20 years ago
dscho
7d3b1c9762
use rfbClientErr to log errors, check if calloc succeded (both hinted by Andre Leiradella)
20 years ago
dscho
c641923d05
fix long reads (in some events of success, no TRUE was returned)
20 years ago
dscho
b583cf5347
move read buffer to rfbClient structure (thread safety); make rfbClientLog
...
overrideable
20 years ago
dscho
31d0617d3d
no need to modify argv
20 years ago
dscho
97299606da
global structures/functions should have "rfb", "sra" or "zrle" as prefix,
...
while structure members should not
20 years ago
dscho
b68e387949
do not use GNU-only getline
21 years ago
dscho
11271316d3
support password reading with getpass(); support -play to play vncrec'orded files
21 years ago
dscho
20e8e7302f
fix silly hextile bug
21 years ago
dscho
03ad9b0b03
recognize more encodings
21 years ago
dscho
e70c3be736
debug
21 years ago
dscho
d197504916
fix silly update bug with raw encoding
21 years ago
dscho
35236477c4
all this moving and renaming needs changes in the cvsignores, too!
21 years ago
dscho
2b8c2a5c3a
add client_examples/, add SDLvncviewer, libvncclient API changes, suppress automake CFLAGS nagging
21 years ago
dscho
876868553d
move the library into libvncserver/, x11vnc into x11vnc/
21 years ago
dscho
7cb3958fd9
fix compilation with Mac OSX: preprocessor can't do recursive macros
21 years ago
markmc
d02db5cac4
2002-09-11 Mark McLoughlin <mark@skynet.ie>
...
* Makefile.in, */Makefile.in, aclocal.m4,
bootstrap.sh, config.h.in, configure,
depcomp, install-sh, missing, mkinstalldirs,
Removed auto-generated files from CVS.
21 years ago
dscho
937b906f0d
ZRLE no longer uses C++, but C
21 years ago
dscho
f41eee753e
added --disable-cxx flag to configure
22 years ago
dscho
682e8a669a
more files to ignore
22 years ago
dscho
1fd42ce98c
make --without-jpeg, --without-zlib work
22 years ago
dscho
eeb2061dfb
API change: Bool, KeySym, Pixel get prefix "rfb"; constants in rfbconfig.h get prefix "LIBVNCSERVER_"
22 years ago
dscho
964aa1628f
further valgrinding showed leaked mallocs
22 years ago
dscho
2cc9392914
is autoconfed now
22 years ago
dscho
13b358fed1
fixed maxRectsPerUpdate with Tight encoding bug; some autoconfing; stderr should not be used in a library (use rfbLog instead)
22 years ago
dscho
0fc57f2054
first alpha version of libvncclient
22 years ago