├── spiceproxy ├── .npmignore ├── .gitignore ├── filelist.js ├── package.json ├── spicechannel.js ├── socket.js ├── concatenator.js └── globalpool.js ├── unittest ├── reassemblerfactory.test.js ├── packetfactory.test.js ├── some.html ├── keymap.test.js ├── displayrouter.test.js ├── graphictestfiles │ └── uris.js ├── packetprocess.test.js ├── collisiondetector.test.js ├── connectioncontrol.test.js ├── busprocess.test.js ├── timelapsedetector.test.js ├── syncasynchandler.test.js ├── clusternodechooser.test.js ├── eventobject.test.js ├── socket.test.js ├── graphictest.test.js ├── displayprocess.test.js ├── packetlinkfactory.test.js ├── viewqueue.test.js ├── queue.test.js ├── spiceconnection.test.js ├── socketqueue.test.js ├── packetreassembler.test.js ├── packetcontroller.test.js ├── sizedefiner.test.js ├── packetextractor.test.js ├── runqueue.test.js ├── busconnection.test.js ├── tests.js ├── graphic.test.js └── application.test.js ├── flexvdi ├── inactivity.js └── extwin.js ├── lib ├── sha1.js ├── jquery.nok.min.css ├── jquery.nok.min.js ├── prng4.js ├── CollisionDetector.js ├── rng.js ├── flipper.js ├── images │ └── jsquic_family.js ├── SyncAsyncHandler.js ├── AsyncWorker.js ├── jquery-mousewheel.js ├── timelapsedetector.js ├── IntegrationBenchmark.js ├── runqueue.js ├── encrypt.js ├── stuckkeyshandler.js ├── GenericObjectPool.js ├── displayRouter.js ├── GlobalPool.js ├── PacketWorkerIdentifier.js └── ImageUncompressor.js ├── eyeos128.png ├── swcanvas ├── cat.jpg ├── benchmark.html ├── swcanvas.js └── test.html ├── resources ├── mouse.png ├── magnifier.png ├── button-close.png ├── flexvdi-logo.png ├── mouse_cursor.gif ├── mouse_cursor.png └── button-close-highlight.png ├── package.json ├── sonar.properties ├── commit-stage.sh ├── application ├── stream.js ├── imagecache.js ├── virtualmouse.js ├── packetprocess.js ├── inputmanager.js └── packetfilter.js ├── extwin.html ├── network ├── reassemblerfactory.js ├── clusternodechooser.js ├── packetcontroller.js ├── packetextractor.js ├── connectioncontrol.js ├── websocketwrapper.js ├── packetlinkfactory.js ├── socketqueue.js ├── packetreassembler.js ├── sizedefiner.js └── socket.js ├── process ├── mainprocess.js ├── cursorprocess.js └── displaypreprocess.js ├── translation.js ├── README.md └── benchmark.html /spiceproxy/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unittest/reassemblerfactory.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spiceproxy/.gitignore: -------------------------------------------------------------------------------- 1 | /spiceproxy.js 2 | /*.tgz 3 | -------------------------------------------------------------------------------- /spiceproxy/filelist.js: -------------------------------------------------------------------------------- 1 | :q 2 | 3 | 4 | var list = [ 5 | 6 | ]; 7 | -------------------------------------------------------------------------------- /flexvdi/inactivity.js: -------------------------------------------------------------------------------- 1 | var inactivityTimeout = 0; 2 | var inactivityGrace = 30; 3 | -------------------------------------------------------------------------------- /lib/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/lib/sha1.js -------------------------------------------------------------------------------- /eyeos128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/eyeos128.png -------------------------------------------------------------------------------- /swcanvas/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/swcanvas/cat.jpg -------------------------------------------------------------------------------- /resources/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/mouse.png -------------------------------------------------------------------------------- /resources/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/magnifier.png -------------------------------------------------------------------------------- /resources/button-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/button-close.png -------------------------------------------------------------------------------- /resources/flexvdi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/flexvdi-logo.png -------------------------------------------------------------------------------- /resources/mouse_cursor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/mouse_cursor.gif -------------------------------------------------------------------------------- /resources/mouse_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/mouse_cursor.png -------------------------------------------------------------------------------- /flexvdi/extwin.js: -------------------------------------------------------------------------------- 1 | var exturl = ""; 2 | var extwidth = "600px"; 3 | var extheight = "600px"; 4 | var extmargin = "100px auto"; 5 | -------------------------------------------------------------------------------- /resources/button-close-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flexVDI/spice-web-client/HEAD/resources/button-close-highlight.png -------------------------------------------------------------------------------- /unittest/packetfactory.test.js: -------------------------------------------------------------------------------- 1 | /* 2 | * To change this template, choose Tools | Templates 3 | * and open the template in the editor. 4 | */ 5 | 6 | 7 | -------------------------------------------------------------------------------- /unittest/some.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |