summaryrefslogtreecommitdiff
path: root/econproxy.c
AgeCommit message (Collapse)AuthorFilesLines
2013-03-13econproto: unknown_field_3 in reqconnect seems to be a version infoHEADmasterBenjamin Franzke1-1/+2
If it is unequal to 3, the beamer claims the version is not supported.
2013-03-13econproxy: Add a comment about two unknown field in reqconnectBenjamin Franzke1-0/+2
2013-03-13econpacket: Try to be able to read cmd21Benjamin Franzke1-11/+3
2013-03-12econproxy: Move iov from struct ep into rfb_initBenjamin Franzke1-6/+6
Its the only place where it is used.
2013-03-12econproxy: Remove unneded errno.h and assert.h includesBenjamin Franzke1-2/+0
2013-03-12Move econ packet handling into seperate c-fileBenjamin Franzke1-135/+39
2013-03-11econproxy: Support connecting to a vnc serverBenjamin Franzke1-11/+37
So that we do not require that the server supports reverse connection.
2013-03-11econproxy: Use union instead of cast for ssize_t vs size_tBenjamin Franzke1-7/+5
2013-03-11econproxy: Default to raw encoding againBenjamin Franzke1-1/+1
2013-03-11econproxy: Try RRE encoding (doesnt work..)Benjamin Franzke1-4/+23
2013-03-11econproxy: Try to send Zlib data (also not supported :[)Benjamin Franzke1-6/+7
2013-03-11Add ZRLE encoding which doesnt seem to be supportedBenjamin Franzke1-4/+24
..but lets test it further, maybe its just an implementation fault.
2013-03-11econproxy: Thight reader needs to pass a offset to loop_readBenjamin Franzke1-5/+6
2013-03-11econproxy: turn of sleepingBenjamin Franzke1-1/+1
We rather need a timer, so that we can try to synchronize to a static rate.
2013-03-11econproxy: debugging: print encodingBenjamin Franzke1-0/+1
2013-03-11Add -Wextra and use gnu99Benjamin Franzke1-4/+8
2013-03-11econproxy: Use ssize_t for read resultsBenjamin Franzke1-1/+1
Since size_t is unsigned, so checking for < 0 wont work.
2013-03-11econproxy: Use free_iov on error in framebuffer updateBenjamin Franzke1-12/+6
2013-03-11econproxy: Add econ_ prefix to send/read_packetBenjamin Franzke1-16/+16
To make clear its related to the beamer-side protocol.
2013-03-11econproxy: Move econ initialization into own functionBenjamin Franzke1-17/+26
2013-03-11econrpoxy: Move rfb initialization into own functionBenjamin Franzke1-51/+69
2013-03-11econproxy: First try on proxying tight [Not Working]Benjamin Franzke1-5/+49
2013-03-11econproxy: add some debugging outputBenjamin Franzke1-1/+4
2013-03-11econproxy: Put request & update into loop - Image is updated now! :)Benjamin Franzke1-17/+15
2013-03-11econproxy: No need to save first frame as ppm anymoreBenjamin Franzke1-21/+0
Was just for debugging purposes..
2013-03-11econproxy: datasize and nrects should be in network order for econBenjamin Franzke1-1/+3
2013-03-11econproxy: Add function to retreive a framebuffer updateBenjamin Franzke1-66/+96
It has to cope with multiple rects etc..
2013-03-10wipBenjamin Franzke1-8/+81
2013-03-10Disable quirks for windows-complianceBenjamin Franzke1-0/+2
2013-03-10econproxy: Move update request into own functionBenjamin Franzke1-10/+19
To be reusable..
2013-03-10Add GPL3 copyrightBenjamin Franzke1-1/+17
2013-03-10econproxy: Actually send framebuffer update with nrectsBenjamin Franzke1-10/+17
2013-03-10econproxy: Accept keepalive white waiting for cmd22Benjamin Franzke1-0/+2
2013-03-10econproxy: read_packet: Increase debugging on errorBenjamin Franzke1-2/+4
2013-03-10econproxy: Specify own in ip ep_send_frame headerBenjamin Franzke1-0/+1
2013-03-10econproxy: Keepalive may be an irregular commandBenjamin Franzke1-0/+6
2013-03-09econproxy: Add read_packetBenjamin Franzke1-26/+79
Tries to verify packet integrity, e.g. datasize, recordCount.. Command 21 isnt handled yet, since that has another structure than other commands.
2013-03-09econproxy: Add send_packetBenjamin Franzke1-5/+18
Decides depending on the semantics of a packets (datasize,recordCount), how much parts of the iov have to be send. So we do not need to specifiy it explicitly anylonger.
2013-03-09econproxy: Add init_packet that does repetitive tasksBenjamin Franzke1-29/+20
2013-03-09econproxy: No need to pause since we sleep foreverBenjamin Franzke1-2/+0
2013-03-09econproxy: some cleanupsBenjamin Franzke1-19/+16
2013-03-09econproxy: First try on sending a frame [untested]Benjamin Franzke1-0/+71
2013-03-09econproxy: remove old codeBenjamin Franzke1-7/+0
2013-03-09econproxy: First try to send reqconnect to the beamerBenjamin Franzke1-95/+231
2013-03-07Init econproxy: Support retrieving a frame from x11vnc & write to ppmBenjamin Franzke1-0/+294