summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2014-04-05 18:38:35 -0500
committerJohannes Schindelin <johannes.schindelin@gmx.de>2014-04-05 18:38:35 -0500
commit646f844f69cc74b8eebf25cc76663b2ee851e5d3 (patch)
tree78bd6209e630a980715f30c152365853c9021ece /examples
parent817f6e658d0cec41088692e2424d5d7b1a20a333 (diff)
parenta705cd625cd4ae61ba05cb8333a46662429ca6a1 (diff)
downloadlibtdevnc-646f844f69cc74b8eebf25cc76663b2ee851e5d3.tar.gz
libtdevnc-646f844f69cc74b8eebf25cc76663b2ee851e5d3.zip
Merge branch 'repeater'
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Conflicts: .gitignore
Diffstat (limited to 'examples')
-rw-r--r--examples/Makefile.am2
-rw-r--r--examples/repeater.c68
2 files changed, 69 insertions, 1 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am
index 29d3774..6a7d656 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -23,5 +23,5 @@ noinst_HEADERS=radon.h rotatetemplate.c
noinst_PROGRAMS=example pnmshow regiontest pnmshow24 fontsel \
vncev storepasswd colourmaptest simple simple15 $(MAC) \
$(FILETRANSFER) backchannel $(BLOOPTEST) camera rotate \
- zippy
+ zippy repeater
diff --git a/examples/repeater.c b/examples/repeater.c
new file mode 100644
index 0000000..cf0350f
--- /dev/null
+++ b/examples/repeater.c
@@ -0,0 +1,68 @@
+/* This example shows how to connect to an UltraVNC repeater. */
+
+#include <rfb/rfb.h>
+
+static void clientGone(rfbClientPtr cl)
+{
+ rfbShutdownServer(cl->screen, TRUE);
+}
+
+int main(int argc,char** argv)
+{
+ char *repeaterHost;
+ int repeaterPort, sock;
+ char id[250];
+ rfbClientPtr cl;
+
+ int i,j;
+ uint16_t* f;
+
+ /* Parse command-line arguments */
+ if (argc < 3) {
+ fprintf(stderr,
+ "Usage: %s <id> <repeater-host> [<repeater-port>]\n", argv[0]);
+ exit(1);
+ }
+ snprintf(id, sizeof(id) - 1, "ID:%s", argv[1]);
+ repeaterHost = argv[2];
+ repeaterPort = argc < 4 ? 5500 : atoi(argv[3]);
+
+ /* The initialization is identical to simple15.c */
+ rfbScreenInfoPtr server=rfbGetScreen(&argc,argv,400,300,5,3,2);
+ if(!server)
+ return 0;
+ server->frameBuffer=(char*)malloc(400*300*2);
+ f=(uint16_t*)server->frameBuffer;
+ for(j=0;j<300;j++)
+ for(i=0;i<400;i++)
+ f[j*400+i]=/* red */ ((j*32/300) << 10) |
+ /* green */ (((j+400-i)*32/700) << 5) |
+ /* blue */ ((i*32/400));
+
+ /* Now for the repeater-specific part: */
+ server->port = -1; /* do not listen on any port */
+ server->ipv6port = -1; /* do not listen on any port */
+
+ sock = rfbConnectToTcpAddr(repeaterHost, repeaterPort);
+ if (sock < 0) {
+ perror("connect to repeater");
+ return 1;
+ }
+ if (write(sock, id, sizeof(id)) != sizeof(id)) {
+ perror("writing id");
+ return 1;
+ }
+ cl = rfbNewClient(server, sock);
+ if (!cl) {
+ perror("new client");
+ return 1;
+ }
+ cl->reverseConnection = 0;
+ cl->clientGoneHook = clientGone;
+
+ /* Run the server */
+ rfbInitServer(server);
+ rfbRunEventLoop(server,-1,FALSE);
+
+ return 0;
+}