├── .gitignore ├── Android.mk ├── LibVNCServer-0.9.7 ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LibVNCServer.spec.in ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── TODO ├── acinclude.m4 ├── aclocal.m4 ├── classes │ ├── Makefile.am │ ├── Makefile.in │ ├── VncViewer.jar │ ├── index.vnc │ ├── javaviewer.pseudo_proxy.patch │ └── ssl │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── SignedUltraViewerSSL.jar │ │ ├── SignedVncViewer.jar │ │ ├── UltraViewerSSL.jar │ │ ├── VncViewer.jar │ │ ├── index.vnc │ │ ├── onetimekey │ │ ├── proxy.vnc │ │ ├── ss_vncviewer │ │ ├── ultra.vnc │ │ ├── ultraproxy.vnc │ │ └── ultrasigned.vnc ├── client_examples │ ├── Makefile.am │ ├── Makefile.in │ ├── SDLvncviewer.c │ ├── backchannel.c │ ├── ppmtest.c │ └── vnc2mpg.c ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── contrib │ ├── Makefile.am │ ├── Makefile.in │ └── zippy.c ├── depcomp ├── examples │ ├── Makefile.am │ ├── Makefile.in │ ├── backchannel.c │ ├── blooptest.c │ ├── camera.c │ ├── colourmaptest.c │ ├── example.c │ ├── filetransfer.c │ ├── fontsel.c │ ├── mac.c │ ├── pnmshow.c │ ├── pnmshow24.c │ ├── radon.h │ ├── regiontest.c │ ├── rotate.c │ ├── rotatetemplate.c │ ├── simple.c │ ├── simple15.c │ ├── storepasswd.c │ └── vncev.c ├── install-sh ├── libvncclient │ ├── Makefile.am │ ├── Makefile.in │ ├── corre.c │ ├── cursor.c │ ├── hextile.c │ ├── listen.c │ ├── lzoconf.h │ ├── minilzo.c │ ├── minilzo.h │ ├── rfbproto.c │ ├── rre.c │ ├── sockets.c │ ├── tight.c │ ├── ultra.c │ ├── vncviewer.c │ ├── zlib.c │ └── zrle.c ├── libvncserver-config.in ├── libvncserver │ ├── Makefile.am │ ├── Makefile.in │ ├── auth.c │ ├── cargs.c │ ├── corre.c │ ├── cursor.c │ ├── cutpaste.c │ ├── d3des.c │ ├── d3des.h │ ├── draw.c │ ├── font.c │ ├── hextile.c │ ├── httpd.c │ ├── lzoconf.h │ ├── main.c │ ├── minilzo.c │ ├── minilzo.h │ ├── private.h │ ├── rfbregion.c │ ├── rfbserver.c │ ├── rre.c │ ├── scale.c │ ├── scale.h │ ├── selbox.c │ ├── sockets.c │ ├── stats.c │ ├── tableinit24.c │ ├── tableinitcmtemplate.c │ ├── tableinittctemplate.c │ ├── tabletrans24template.c │ ├── tabletranstemplate.c │ ├── tight.c │ ├── tightvnc-filetransfer │ │ ├── filelistinfo.c │ │ ├── filelistinfo.h │ │ ├── filetransfermsg.c │ │ ├── filetransfermsg.h │ │ ├── handlefiletransferrequest.c │ │ ├── handlefiletransferrequest.h │ │ ├── rfbtightproto.h │ │ └── rfbtightserver.c │ ├── translate.c │ ├── ultra.c │ ├── vncauth.c │ ├── zlib.c │ ├── zrle.c │ ├── zrleencodetemplate.c │ ├── zrleoutstream.c │ ├── zrleoutstream.h │ ├── zrlepalettehelper.c │ ├── zrlepalettehelper.h │ ├── zrletypes.h │ └── zywrletemplate.c ├── ltmain.sh ├── missing ├── rfb │ ├── default8x16.h │ ├── keysym.h │ ├── rfb.h │ ├── rfbclient.h │ ├── rfbconfig.h │ ├── rfbint.h │ ├── rfbproto.h │ └── rfbregion.h ├── rfbconfig.h.in ├── test │ ├── Makefile.am │ ├── Makefile.in │ ├── blooptest.c │ ├── cargstest.c │ ├── copyrecttest.c │ ├── cursortest.c │ └── encodingstest.c └── vncterm │ ├── ChangeLog │ ├── LinuxVNC.c │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── TODO │ ├── VNCommand.c │ ├── VNConsole.c │ ├── VNConsole.h │ ├── example.c │ └── vga.h ├── Makefile ├── README ├── README.md ├── external └── jpeg │ ├── Android.mk │ └── jpeg │ ├── CleanSpec.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── Makefile │ ├── NOTICE │ ├── README │ ├── ansi2knr.1 │ ├── ansi2knr.c │ ├── cderror.h │ ├── cdjpeg.c │ ├── cdjpeg.h │ ├── change.log │ ├── cjpeg.1 │ ├── cjpeg.c │ ├── ckconfig.c │ ├── coderules.doc │ ├── config.guess │ ├── config.log │ ├── config.status │ ├── config.sub │ ├── configure │ ├── djpeg.1 │ ├── djpeg.c │ ├── example.c │ ├── filelist.doc │ ├── install-sh │ ├── install.doc │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jchuff.h │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.bcc │ ├── jconfig.cfg │ ├── jconfig.dj │ ├── jconfig.doc │ ├── jconfig.h │ ├── jconfig.mac │ ├── jconfig.manx │ ├── jconfig.mc6 │ ├── jconfig.sas │ ├── jconfig.st │ ├── jconfig.vc │ ├── jconfig.vms │ ├── jconfig.wat │ ├── jcparam.c │ ├── jcphuff.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdhuff.h │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdphuff.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.S │ ├── jidctfst.c │ ├── jidctint.c │ ├── jidctred.c │ ├── jinclude.h │ ├── jmem-android.c │ ├── jmemansi.c │ ├── jmemdos.c │ ├── jmemdosa.asm │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jpegtran.1 │ ├── jpegtran.c │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libtool │ ├── ltconfig │ ├── ltmain.sh │ ├── makcjpeg.st │ ├── makdjpeg.st │ ├── makeapps.ds │ ├── makefile.ansi │ ├── makefile.bcc │ ├── makefile.cfg │ ├── makefile.dj │ ├── makefile.manx │ ├── makefile.mc6 │ ├── makefile.mms │ ├── makefile.sas │ ├── makefile.unix │ ├── makefile.vc │ ├── makefile.vms │ ├── makefile.wat │ ├── makelib.ds │ ├── makeproj.mac │ ├── makljpeg.st │ ├── maktjpeg.st │ ├── makvms.opt │ ├── rdbmp.c │ ├── rdcolmap.c │ ├── rdgif.c │ ├── rdjpgcom.1 │ ├── rdjpgcom.c │ ├── rdppm.c │ ├── rdrle.c │ ├── rdswitch.c │ ├── rdtarga.c │ ├── structure.doc │ ├── testimg.jpg │ ├── testimgp.jpg │ ├── testorig.jpg │ ├── testprog.jpg │ ├── transupp.c │ ├── transupp.h │ ├── usage.doc │ ├── wizard.doc │ ├── wrbmp.c │ ├── wrgif.c │ ├── wrjpgcom.1 │ ├── wrjpgcom.c │ ├── wrppm.c │ ├── wrrle.c │ └── wrtarga.c ├── fbvncserver.c ├── jni ├── Android.mk └── Application.mk └── kernel ├── README └── vnckbd ├── Kconfig ├── Makefile └── vnckbd.c /.gitignore: -------------------------------------------------------------------------------- 1 | libs 2 | obj 3 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/Android.mk -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/AUTHORS -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/COPYING -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/ChangeLog -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/INSTALL -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/LibVNCServer.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/LibVNCServer.spec.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/NEWS -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/README -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/TODO -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/acinclude.m4 -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/aclocal.m4 -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/VncViewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/VncViewer.jar -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/index.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/index.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/javaviewer.pseudo_proxy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/javaviewer.pseudo_proxy.patch -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/README -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/SignedUltraViewerSSL.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/SignedUltraViewerSSL.jar -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/SignedVncViewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/SignedVncViewer.jar -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/UltraViewerSSL.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/UltraViewerSSL.jar -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/VncViewer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/VncViewer.jar -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/index.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/index.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/onetimekey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/onetimekey -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/proxy.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/proxy.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/ss_vncviewer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/ss_vncviewer -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/ultra.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/ultra.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/ultraproxy.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/ultraproxy.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/classes/ssl/ultrasigned.vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/classes/ssl/ultrasigned.vnc -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/SDLvncviewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/SDLvncviewer.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/backchannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/backchannel.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/ppmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/ppmtest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/client_examples/vnc2mpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/client_examples/vnc2mpg.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/compile -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/config.guess -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/config.sub -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/configure -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/configure.ac -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/contrib/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/contrib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/contrib/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/contrib/zippy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/contrib/zippy.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/depcomp -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/backchannel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/backchannel.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/blooptest.c: -------------------------------------------------------------------------------- 1 | #define BACKGROUND_LOOP_TEST 2 | #include "example.c" 3 | -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/camera.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/colourmaptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/colourmaptest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/example.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/filetransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/filetransfer.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/fontsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/fontsel.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/mac.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/pnmshow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/pnmshow.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/pnmshow24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/pnmshow24.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/radon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/radon.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/regiontest.c: -------------------------------------------------------------------------------- 1 | #define SRA_TEST 2 | #include "../libvncserver/rfbregion.c" 3 | 4 | -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/rotate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/rotatetemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/rotatetemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/simple.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/simple15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/simple15.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/storepasswd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/storepasswd.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/examples/vncev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/examples/vncev.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/install-sh -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/corre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/corre.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/cursor.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/hextile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/hextile.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/listen.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/lzoconf.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/minilzo.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/minilzo.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/rfbproto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/rfbproto.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/rre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/rre.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/sockets.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/tight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/tight.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/ultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/ultra.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/vncviewer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/vncviewer.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/zlib.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncclient/zrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncclient/zrle.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver-config.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/auth.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/cargs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/cargs.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/corre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/corre.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/cursor.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/cutpaste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/cutpaste.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/d3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/d3des.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/d3des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/d3des.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/draw.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/font.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/hextile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/hextile.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/httpd.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/lzoconf.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/main.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/minilzo.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/minilzo.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/private.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/rfbregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/rfbregion.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/rfbserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/rfbserver.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/rre.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/rre.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/scale.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/scale.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/selbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/selbox.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/sockets.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/stats.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tableinit24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tableinit24.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tableinitcmtemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tableinitcmtemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tableinittctemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tableinittctemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tabletrans24template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tabletrans24template.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tabletranstemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tabletranstemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tight.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filelistinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filelistinfo.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filelistinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filelistinfo.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filetransfermsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filetransfermsg.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filetransfermsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/filetransfermsg.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/handlefiletransferrequest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/handlefiletransferrequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/handlefiletransferrequest.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/rfbtightproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/rfbtightproto.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/rfbtightserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/tightvnc-filetransfer/rfbtightserver.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/translate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/ultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/ultra.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/vncauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/vncauth.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zlib.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrle.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrleencodetemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrleencodetemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrleoutstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrleoutstream.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrleoutstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrleoutstream.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrlepalettehelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrlepalettehelper.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrlepalettehelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrlepalettehelper.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zrletypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zrletypes.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/libvncserver/zywrletemplate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/libvncserver/zywrletemplate.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/ltmain.sh -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/missing -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/default8x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/default8x16.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/keysym.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfb.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfbclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfbclient.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfbconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfbconfig.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfbint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfbint.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfbproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfbproto.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfb/rfbregion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfb/rfbregion.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/rfbconfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/rfbconfig.h.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/blooptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/blooptest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/cargstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/cargstest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/copyrecttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/copyrecttest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/cursortest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/cursortest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/test/encodingstest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/test/encodingstest.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/ChangeLog -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/LinuxVNC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/LinuxVNC.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/Makefile.am -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/Makefile.in -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/README -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/TODO -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/VNCommand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/VNCommand.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/VNConsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/VNConsole.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/VNConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/VNConsole.h -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/example.c -------------------------------------------------------------------------------- /LibVNCServer-0.9.7/vncterm/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/LibVNCServer-0.9.7/vncterm/vga.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/README.md -------------------------------------------------------------------------------- /external/jpeg/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/Android.mk -------------------------------------------------------------------------------- /external/jpeg/jpeg/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/CleanSpec.mk -------------------------------------------------------------------------------- /external/jpeg/jpeg/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/jpeg/jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/Makefile -------------------------------------------------------------------------------- /external/jpeg/jpeg/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/NOTICE -------------------------------------------------------------------------------- /external/jpeg/jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/README -------------------------------------------------------------------------------- /external/jpeg/jpeg/ansi2knr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/ansi2knr.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/ansi2knr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/ansi2knr.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/cderror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/cderror.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/cdjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/cdjpeg.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/cdjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/cdjpeg.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/change.log -------------------------------------------------------------------------------- /external/jpeg/jpeg/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/cjpeg.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/cjpeg.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/ckconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/ckconfig.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/coderules.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/coderules.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/config.guess -------------------------------------------------------------------------------- /external/jpeg/jpeg/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/config.log -------------------------------------------------------------------------------- /external/jpeg/jpeg/config.status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/config.status -------------------------------------------------------------------------------- /external/jpeg/jpeg/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/config.sub -------------------------------------------------------------------------------- /external/jpeg/jpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/configure -------------------------------------------------------------------------------- /external/jpeg/jpeg/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/djpeg.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/djpeg.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/example.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/filelist.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/filelist.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/install-sh -------------------------------------------------------------------------------- /external/jpeg/jpeg/install.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/install.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcapimin.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcapistd.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jccoefct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jccolor.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcdctmgr.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jchuff.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jchuff.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcinit.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcmainct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcmarker.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcmaster.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcomapi.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.bcc -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.cfg -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.dj -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.mac -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.manx -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.mc6 -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.sas -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.st -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.vc -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.vms -------------------------------------------------------------------------------- /external/jpeg/jpeg/jconfig.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jconfig.wat -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcparam.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcphuff.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcprepct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jcsample.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jctrans.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdapimin.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdapistd.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdatadst.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdatasrc.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdcoefct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdcolor.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdct.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jddctmgr.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdhuff.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdhuff.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdinput.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdmainct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdmarker.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdmaster.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdmerge.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdphuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdphuff.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdpostct.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdsample.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jdtrans.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jerror.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jerror.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jfdctflt.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jfdctfst.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jfdctint.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jidctflt.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jidctfst.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jidctfst.S -------------------------------------------------------------------------------- /external/jpeg/jpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jidctfst.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jidctint.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jidctred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jidctred.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jinclude.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmem-android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmem-android.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemansi.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemdos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemdos.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemdosa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemdosa.asm -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemmac.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemmgr.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemname.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemnobs.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmemsys.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jmorecfg.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jpegint.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jpeglib.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/jpegtran.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jpegtran.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/jpegtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jpegtran.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jquant1.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jquant2.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jutils.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/jversion.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/libtool -------------------------------------------------------------------------------- /external/jpeg/jpeg/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/ltconfig -------------------------------------------------------------------------------- /external/jpeg/jpeg/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/ltmain.sh -------------------------------------------------------------------------------- /external/jpeg/jpeg/makcjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makcjpeg.st -------------------------------------------------------------------------------- /external/jpeg/jpeg/makdjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makdjpeg.st -------------------------------------------------------------------------------- /external/jpeg/jpeg/makeapps.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makeapps.ds -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.ansi -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.bcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.bcc -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.cfg -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.dj -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.manx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.manx -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.mc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.mc6 -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.mms -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.sas -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.unix -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.vc -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.vms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.vms -------------------------------------------------------------------------------- /external/jpeg/jpeg/makefile.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makefile.wat -------------------------------------------------------------------------------- /external/jpeg/jpeg/makelib.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makelib.ds -------------------------------------------------------------------------------- /external/jpeg/jpeg/makeproj.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makeproj.mac -------------------------------------------------------------------------------- /external/jpeg/jpeg/makljpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makljpeg.st -------------------------------------------------------------------------------- /external/jpeg/jpeg/maktjpeg.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/maktjpeg.st -------------------------------------------------------------------------------- /external/jpeg/jpeg/makvms.opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/makvms.opt -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdbmp.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdcolmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdcolmap.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdgif.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdjpgcom.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdjpgcom.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdppm.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdrle.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdswitch.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/rdtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/rdtarga.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/structure.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/structure.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/testimg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/testimg.jpg -------------------------------------------------------------------------------- /external/jpeg/jpeg/testimgp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/testimgp.jpg -------------------------------------------------------------------------------- /external/jpeg/jpeg/testorig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/testorig.jpg -------------------------------------------------------------------------------- /external/jpeg/jpeg/testprog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/testprog.jpg -------------------------------------------------------------------------------- /external/jpeg/jpeg/transupp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/transupp.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/transupp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/transupp.h -------------------------------------------------------------------------------- /external/jpeg/jpeg/usage.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/usage.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/wizard.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wizard.doc -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrbmp.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrgif.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrjpgcom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrjpgcom.1 -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrjpgcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrjpgcom.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrppm.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrrle.c -------------------------------------------------------------------------------- /external/jpeg/jpeg/wrtarga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/external/jpeg/jpeg/wrtarga.c -------------------------------------------------------------------------------- /fbvncserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/fbvncserver.c -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /kernel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/kernel/README -------------------------------------------------------------------------------- /kernel/vnckbd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/kernel/vnckbd/Kconfig -------------------------------------------------------------------------------- /kernel/vnckbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/kernel/vnckbd/Makefile -------------------------------------------------------------------------------- /kernel/vnckbd/vnckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lintonye/fastdroid-vnc-server/HEAD/kernel/vnckbd/vnckbd.c --------------------------------------------------------------------------------