mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 21:27:40 +00:00
12 lines
150 B
C
12 lines
150 B
C
|
|
#include <stdio.h>
|
|
|
|
#include "proxy.h"
|
|
|
|
void proxy(int client_fd) {
|
|
|
|
write(client_fd, "name:hello;size:1024,768;error:Test finished.;", 46);
|
|
|
|
}
|
|
|