Added dummy proxy implementation, moved client, added main Makefile.

This commit is contained in:
Michael Jumper
2010-09-04 22:55:10 -07:00
committed by Mike Jumper
parent 7ee970c88a
commit c048537232
70 changed files with 159 additions and 0 deletions

11
guacamole/proxy/proxy.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include "proxy.h"
void proxy(int client_fd) {
write(client_fd, "name:hello;size:1024,768;error:Test finished.;", 46);
}