mirror of
https://github.com/lxsang/antd-wvnc-plugin.git
synced 2024-12-26 20:08:22 +01:00
686 lines
19 KiB
C
686 lines
19 KiB
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <rfb/rfbclient.h>
|
|
#include <pthread.h>
|
|
#ifdef USE_ZLIB
|
|
#include <zlib.h>
|
|
#endif
|
|
#ifdef USE_JPEG
|
|
#include <jpeglib.h>
|
|
#endif
|
|
#include "plugin.h"
|
|
#define get_user_data(x) ((wvnc_user_data_t *)x)
|
|
#define R_SHIFT(x) (0)
|
|
#define G_SHIFT(x) ((x >= 24) ? 8 :)
|
|
/*
|
|
Vnc to web socket using the
|
|
libvncserver/libvncclient
|
|
*/
|
|
typedef struct
|
|
{
|
|
uint8_t cmd;
|
|
uint16_t size;
|
|
uint8_t *data;
|
|
|
|
} wvnc_cmd_t;
|
|
|
|
typedef enum { DISCONNECTED, READY, CONNECTED } wvnc_connect_t;
|
|
|
|
typedef struct
|
|
{
|
|
antd_request_t *wscl;
|
|
wvnc_connect_t status;
|
|
rfbClient *vncl;
|
|
uint8_t bbp;
|
|
uint8_t flag;
|
|
uint8_t quality;
|
|
//int rate;
|
|
} wvnc_user_data_t;
|
|
|
|
|
|
typedef struct
|
|
{
|
|
uint8_t r_shift;
|
|
uint8_t g_shift;
|
|
uint8_t b_shift;
|
|
uint8_t r_max;
|
|
uint8_t g_max;
|
|
uint8_t b_max;
|
|
} wvnc_pixel_format_t;
|
|
|
|
void *vnc_fatal(void *client, const char *msg);
|
|
void *process(void *cl, int wait);
|
|
static rfbBool resize(rfbClient *client);
|
|
void open_session(void *client, const char *addr);
|
|
void *consume_client(void *cl, wvnc_cmd_t header);
|
|
static rfbCredential *get_credential(rfbClient *cl, int credentialType);
|
|
static void update(rfbClient *cl, int x, int y, int w, int h);
|
|
|
|
#ifdef USE_ZLIB
|
|
int zlib_compress(uint8_t *src, int len)
|
|
{
|
|
uint8_t *dest = (uint8_t *)malloc(len);
|
|
z_stream defstream;
|
|
defstream.zalloc = Z_NULL;
|
|
defstream.zfree = Z_NULL;
|
|
defstream.opaque = Z_NULL;
|
|
// setup "a" as the input and "b" as the compressed output
|
|
defstream.avail_in = (uInt)len; // size of input
|
|
defstream.next_in = (Bytef *)src; // input char array
|
|
defstream.avail_out = (uInt)len; // size of output
|
|
defstream.next_out = (Bytef *)dest; // output char array
|
|
|
|
// the actual compression work.
|
|
deflateInit(&defstream, Z_BEST_COMPRESSION);
|
|
deflate(&defstream, Z_FINISH);
|
|
deflateEnd(&defstream);
|
|
memcpy(src, dest, defstream.total_out);
|
|
free(dest);
|
|
return defstream.total_out;
|
|
}
|
|
#endif
|
|
|
|
#ifdef USE_JPEG
|
|
int jpeg_compress(uint8_t *buff, int w, int h, int components, int quality)
|
|
{
|
|
uint8_t *tmp = buff;
|
|
/*if(bbp == 4)
|
|
{
|
|
tmp = (uint8_t*)malloc(w*h*(bbp-1));
|
|
for(int i = 0; i < w*h; i++)
|
|
{
|
|
memcpy(tmp + (i*(bbp-1)), buff+ i*bbp, bbp-1 );
|
|
}
|
|
}*/
|
|
struct jpeg_compress_struct cinfo = {0};
|
|
struct jpeg_error_mgr jerror = {0};
|
|
jerror.trace_level = 10;
|
|
cinfo.err = jpeg_std_error(&jerror);
|
|
jerror.trace_level = 10;
|
|
cinfo.err->trace_level = 10;
|
|
jpeg_create_compress(&cinfo);
|
|
|
|
uint8_t *out = NULL;
|
|
unsigned long outbuffer_size = 0;
|
|
jpeg_mem_dest(&cinfo, &out, &outbuffer_size);
|
|
cinfo.image_width = w;
|
|
cinfo.image_height = h;
|
|
cinfo.input_components = components;
|
|
cinfo.in_color_space = components == 4 ? JCS_EXT_RGBA : JCS_RGB;
|
|
jpeg_set_defaults(&cinfo);
|
|
jpeg_set_quality(&cinfo, quality, true);
|
|
jpeg_start_compress(&cinfo, true);
|
|
//unsigned counter = 0;
|
|
JSAMPROW row_pointer[1];
|
|
row_pointer[0] = NULL;
|
|
while (cinfo.next_scanline < cinfo.image_height)
|
|
{
|
|
row_pointer[0] = (JSAMPROW)(&tmp[cinfo.next_scanline * w * components]);
|
|
jpeg_write_scanlines(&cinfo, row_pointer, 1);
|
|
}
|
|
jpeg_finish_compress(&cinfo);
|
|
jpeg_destroy_compress(&cinfo);
|
|
//LOG("before %d after %d\n", w*h*bbp, );
|
|
if (outbuffer_size < (unsigned long)(w * h * components))
|
|
{
|
|
memcpy(buff, out, outbuffer_size);
|
|
}
|
|
else
|
|
{
|
|
outbuffer_size = 0;
|
|
}
|
|
//if(bbp == 4) free(tmp);
|
|
free(out);
|
|
return outbuffer_size;
|
|
}
|
|
#endif
|
|
int get_pixel_format(uint8_t deep, wvnc_pixel_format_t *d)
|
|
{
|
|
switch (deep)
|
|
{
|
|
case 32:
|
|
case 24:
|
|
d->r_shift = 0;
|
|
d->g_shift = 8;
|
|
d->b_shift = 16;
|
|
d->r_max = d->b_max = d->g_max = 255;
|
|
return 1;
|
|
break;
|
|
case 16:
|
|
// RGB 565 format
|
|
d->r_shift = 0;
|
|
d->g_shift = 5;
|
|
d->b_shift = 11;
|
|
d->r_max = 31;
|
|
d->b_max = 31;
|
|
d->g_max = 63;
|
|
return 1;
|
|
default:
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void *process(void *data, int wait)
|
|
{
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
uint8_t *buff = NULL;
|
|
ws_msg_header_t *h = NULL;
|
|
while (!(h = ws_read_header(user_data->wscl->client)) && user_data->status != DISCONNECTED && wait);
|
|
if (h)
|
|
{
|
|
if (h->mask == 0)
|
|
{
|
|
LOG("%s\n", "data is not masked");
|
|
ws_close(user_data->wscl->client, 1012);
|
|
user_data->status = DISCONNECTED;
|
|
free(h);
|
|
return NULL;
|
|
//break;
|
|
}
|
|
if (h->opcode == WS_CLOSE)
|
|
{
|
|
LOG("%s\n", "Websocket: connection closed");
|
|
ws_close(user_data->wscl->client, 1011);
|
|
user_data->status = DISCONNECTED;
|
|
free(h);
|
|
return 0;
|
|
//break;
|
|
}
|
|
else if (h->opcode == WS_BIN)
|
|
{
|
|
int l;
|
|
buff = (uint8_t *)malloc(h->plen + 1);
|
|
if (!buff)
|
|
{
|
|
free(h);
|
|
return vnc_fatal(user_data, "Cannot alloc memory for the command");
|
|
}
|
|
// read the command from the client
|
|
int len = h->plen;
|
|
if ((l = ws_read_data(user_data->wscl->client, h, h->plen, buff)) > 0)
|
|
{
|
|
|
|
// process client command
|
|
wvnc_cmd_t header;
|
|
header.cmd = buff[0];
|
|
buff[len] = '\0';
|
|
header.data = (buff + 3);
|
|
memcpy(&header.size, buff + 1, 2);
|
|
void *st = consume_client(user_data, header);
|
|
if (buff)
|
|
free(buff);
|
|
free(h);
|
|
return st;
|
|
}
|
|
else
|
|
{
|
|
vnc_fatal(user_data, "Invalid request");
|
|
if (buff)
|
|
free(buff);
|
|
free(h);
|
|
return 0;
|
|
//break;
|
|
}
|
|
//buff = NULL;
|
|
}
|
|
else
|
|
{
|
|
vnc_fatal(user_data, "Unknow opcode");
|
|
free(h);
|
|
return 0;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static rfbBool resize(rfbClient *client)
|
|
{
|
|
int width = client->width;
|
|
int height = client->height;
|
|
//int depth = client->format.bitsPerPixel;
|
|
client->updateRect.x = client->updateRect.y = 0;
|
|
client->updateRect.w = width;
|
|
client->updateRect.h = height;
|
|
void *data = rfbClientGetClientData(client, client);
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
//client->width = sdl->pitch / (depth / 8);
|
|
if (client->frameBuffer)
|
|
{
|
|
free(client->frameBuffer);
|
|
client->frameBuffer = NULL;
|
|
}
|
|
client->frameBuffer = (uint8_t *)malloc(width * height * user_data->bbp / 8);
|
|
wvnc_pixel_format_t pxf;
|
|
if (!get_pixel_format(user_data->bbp, &pxf))
|
|
{
|
|
vnc_fatal(user_data, "Cannot get pixel format");
|
|
return FALSE;
|
|
}
|
|
client->format.bitsPerPixel = user_data->bbp;
|
|
client->format.redShift = pxf.r_shift;
|
|
client->format.greenShift = pxf.g_shift;
|
|
client->format.blueShift = pxf.b_shift;
|
|
client->format.redMax = pxf.r_max;
|
|
client->format.greenMax = pxf.g_max;
|
|
client->format.blueMax = pxf.b_max;
|
|
SetFormatAndEncodings(client);
|
|
LOG("width %d, height %d, depth %d\n", width, height, client->format.bitsPerPixel);
|
|
/* create or resize the window */
|
|
// send data to client
|
|
uint8_t cmd[6];
|
|
cmd[0] = 0x83; // resize command
|
|
cmd[1] = (uint8_t)(width & 0xFF);
|
|
cmd[2] = (uint8_t)(width >> 8);
|
|
cmd[3] = (uint8_t)(height & 0xFF);
|
|
cmd[4] = (uint8_t)(height >> 8);
|
|
cmd[5] = (uint8_t)(user_data->bbp);
|
|
ws_b(user_data->wscl->client, cmd, 6);
|
|
uint8_t *ack = (uint8_t *)process(user_data, 1);
|
|
if (!ack || !(*ack))
|
|
{
|
|
LOG("Client fail to resize\n");
|
|
if (ack)
|
|
free(ack);
|
|
return FALSE;
|
|
}
|
|
free(ack);
|
|
return TRUE;
|
|
}
|
|
|
|
static void update(rfbClient *client, int x, int y, int w, int h)
|
|
{
|
|
wvnc_user_data_t *user_data = get_user_data(rfbClientGetClientData(client, client));
|
|
uint8_t components = (uint8_t)client->format.bitsPerPixel / 8;
|
|
int size = w * h * components;
|
|
uint8_t *cmd = (uint8_t *)malloc(size + 10); // + 9
|
|
uint8_t *tmp = cmd + 10;
|
|
uint8_t flag = 0;
|
|
if (!cmd)
|
|
{
|
|
vnc_fatal(user_data, "Cannot allocate data for update");
|
|
return;
|
|
}
|
|
if (!client->frameBuffer)
|
|
{
|
|
LOG("Client frame buffe data not found\n");
|
|
return;
|
|
}
|
|
uint8_t *dest_ptr = tmp;
|
|
uint8_t *src_ptr;
|
|
|
|
//cpy line by line
|
|
int cw = client->width;
|
|
for (int j = y; j < y + h; j++)
|
|
{
|
|
src_ptr = client->frameBuffer + (j * cw * components + x * components);
|
|
memcpy(dest_ptr, src_ptr, w * components);
|
|
if (components == 4)
|
|
for (int i = components - 1; i < w * components; i += components)
|
|
dest_ptr[i] = 255;
|
|
dest_ptr += w * components;
|
|
}
|
|
cmd[0] = 0x84; //update command
|
|
cmd[1] = (uint8_t)(x & 0xFF);
|
|
cmd[2] = (uint8_t)(x >> 8);
|
|
cmd[3] = (uint8_t)(y & 0xFF);
|
|
cmd[4] = (uint8_t)(y >> 8);
|
|
cmd[5] = (uint8_t)(w & 0xFF);
|
|
cmd[6] = (uint8_t)(w >> 8);
|
|
cmd[7] = (uint8_t)(h & 0xFF);
|
|
cmd[8] = (uint8_t)(h >> 8);
|
|
|
|
#ifdef USE_JPEG
|
|
if ((components == 3 || components == 4) && (user_data->flag == 1 || user_data->flag == 3))
|
|
{
|
|
int ret = jpeg_compress(tmp, w, h, components, user_data->quality);
|
|
if (ret > 0)
|
|
{
|
|
flag |= 0x01;
|
|
size = ret;
|
|
}
|
|
}
|
|
|
|
#endif
|
|
#ifdef USE_ZLIB
|
|
if (user_data->flag >= 2)
|
|
{
|
|
flag |= 0x02;
|
|
size = zlib_compress(tmp, size);
|
|
}
|
|
#endif
|
|
cmd[9] = flag;
|
|
ws_b(user_data->wscl->client, cmd, size + 10);
|
|
free(cmd);
|
|
}
|
|
|
|
static rfbCredential *get_credential(rfbClient *cl, int credentialType)
|
|
{
|
|
wvnc_user_data_t *user_data = get_user_data(rfbClientGetClientData(cl, cl));
|
|
rfbCredential *c = malloc(sizeof(rfbCredential));
|
|
c->userCredential.username = malloc(RFB_BUF_SIZE);
|
|
c->userCredential.password = malloc(RFB_BUF_SIZE);
|
|
|
|
if (credentialType != rfbCredentialTypeUser)
|
|
{
|
|
vnc_fatal(user_data, "something else than username and password required for authentication\n");
|
|
return NULL;
|
|
}
|
|
uint8_t cmd[1];
|
|
cmd[0] = 0x82;
|
|
ws_b(user_data->wscl->client, cmd, 1);
|
|
char *up = (char *)process(user_data, 1);
|
|
if (!up)
|
|
{
|
|
if (c)
|
|
{
|
|
free(c->userCredential.username);
|
|
free(c->userCredential.password);
|
|
free(c);
|
|
return vnc_fatal(user_data, "Cannot get user credential");
|
|
}
|
|
}
|
|
char *pass = up;
|
|
while (*pass != '\0')
|
|
pass++;
|
|
pass++;
|
|
LOG("User name %s, pass: %s\n", up, pass);
|
|
memcpy(c->userCredential.username, up, strlen(up) + 1);
|
|
memcpy(c->userCredential.password, pass, strlen(pass) + 1);
|
|
free(up);
|
|
// remove trailing newlines
|
|
//c->userCredential.username[strcspn(c->userCredential.username, "\n")] = 0;
|
|
//c->userCredential.password[strcspn(c->userCredential.password, "\n")] = 0;
|
|
|
|
return c;
|
|
}
|
|
|
|
static char *get_password(rfbClient *client)
|
|
{
|
|
uint8_t cmd[1];
|
|
void *data = rfbClientGetClientData(client, client);
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
cmd[0] = 0x81; // resize command
|
|
ws_b(user_data->wscl->client, cmd, 1);
|
|
|
|
// call process to get the password
|
|
char *pwd = (char *)process(user_data, 1);
|
|
//not free
|
|
if (!pwd)
|
|
{
|
|
vnc_fatal(user_data, "Cannot read user password");
|
|
return NULL;
|
|
}
|
|
//LOG("Password is '%s'\n", pwd);
|
|
return pwd;
|
|
}
|
|
|
|
void open_session(void *data, const char *addr)
|
|
{
|
|
int argc = 2;
|
|
char *argv[2];
|
|
argv[0] = "-listennofork";
|
|
int len = 0;
|
|
FILE *fp = NULL;
|
|
char *buffer = NULL;
|
|
char c;
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
if (access(addr, F_OK) != -1)
|
|
{
|
|
//open the file
|
|
fp = fopen(addr, "r");
|
|
if (fp == NULL)
|
|
{
|
|
vnc_fatal(data, "Unable to read server file");
|
|
return;
|
|
}
|
|
|
|
// find length of first line
|
|
// lines end in "\n", but some malformed text files may not have this char at all
|
|
// and whole file contents will be considered as the first line
|
|
while ((c = fgetc(fp)) != EOF)
|
|
{
|
|
if (c == '\n')
|
|
{
|
|
break;
|
|
}
|
|
len++;
|
|
}
|
|
|
|
// allocate memory for size of first line (len)
|
|
buffer = (char *)malloc(sizeof(char) * (len+1));
|
|
|
|
// seek to beginning of file
|
|
fseek(fp, 0, SEEK_SET);
|
|
buffer[len] = '\0';
|
|
fread(buffer, sizeof(char), len, fp);
|
|
fclose(fp);
|
|
argv[1] = buffer;
|
|
}
|
|
else
|
|
{
|
|
argv[1] = (char *)addr;
|
|
}
|
|
LOG("client.BBP: %d\n", user_data->bbp);
|
|
LOG("client.flag: %d\n", user_data->flag);
|
|
LOG("client.JPEG.quality: %d\n", user_data->quality);
|
|
LOG("Server: %s\n", argv[1]);
|
|
//LOG("Rate is %d\n", user_data->rate);
|
|
if (!rfbInitClient(user_data->vncl, &argc, argv))
|
|
{
|
|
user_data->vncl = NULL; /* rfbInitClient has already freed the client struct */
|
|
//cleanup(vncl);
|
|
vnc_fatal(user_data, "Cannot connect to the server");
|
|
if(buffer) free(buffer);
|
|
return;
|
|
}
|
|
if(buffer) free(buffer);
|
|
user_data->status = CONNECTED;
|
|
}
|
|
|
|
void waitfor(void* data)
|
|
{
|
|
fd_set fd_in;
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
struct timeval timeout;
|
|
timeout.tv_sec = 0;
|
|
timeout.tv_usec = 500;
|
|
while (user_data->status != DISCONNECTED)
|
|
{
|
|
FD_ZERO(&fd_in);
|
|
FD_SET(user_data->wscl->client->sock, &fd_in);
|
|
int rc = select(user_data->wscl->client->sock + 1, &fd_in, NULL, NULL, &timeout);
|
|
if(rc == -1)
|
|
{
|
|
LOG("Client may disconnected \n");
|
|
return;
|
|
}
|
|
if(rc > 0 && FD_ISSET(user_data->wscl->client->sock, &fd_in))
|
|
{
|
|
process(user_data, 0);
|
|
}
|
|
if (user_data->status == CONNECTED)
|
|
{
|
|
// process other message
|
|
int status = WaitForMessage(user_data->vncl, 200); //500
|
|
if (status < 0)
|
|
{
|
|
break;
|
|
}
|
|
if (status)
|
|
{
|
|
if (!HandleRFBServerMessage(user_data->vncl))
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void *vnc_fatal(void *data, const char *msg)
|
|
{
|
|
// print the message then close the
|
|
// connection
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
|
|
int len, size;
|
|
len = strlen(msg);
|
|
size = len + 1;
|
|
LOG("%s\n", msg);
|
|
uint8_t *cmd = (uint8_t *)malloc(size);
|
|
cmd[0] = 0xFE; // error opcode
|
|
if (cmd)
|
|
{
|
|
memcpy(cmd + 1, (uint8_t *)msg, len);
|
|
ws_b(user_data->wscl->client, cmd, size);
|
|
free(cmd);
|
|
}
|
|
// quit the socket
|
|
ws_close(user_data->wscl->client, 1011);
|
|
user_data->status = DISCONNECTED;
|
|
return 0;
|
|
}
|
|
|
|
void *consume_client(void *ptr, wvnc_cmd_t header)
|
|
{
|
|
uint8_t cmd = header.cmd;
|
|
uint16_t size = header.size;
|
|
wvnc_user_data_t *user_data = get_user_data(ptr);
|
|
uint8_t *data;
|
|
// in case of string
|
|
switch (cmd)
|
|
{
|
|
case 0x01: /*client open a connection*/
|
|
user_data->bbp = header.data[0];
|
|
user_data->flag = header.data[1];
|
|
user_data->quality = header.data[2];
|
|
//user_data->rate = (header.data[3] | (header.data[4] << 8))*1000;
|
|
open_session(user_data, (char *)(header.data + 3));
|
|
break;
|
|
case 0x02: //client enter a vnc password
|
|
if (!header.data)
|
|
return NULL;
|
|
return strdup((char *)header.data);
|
|
case 0x03: // client enter a credential
|
|
data = (uint8_t *)malloc(size);
|
|
memcpy(data, header.data, size);
|
|
return data;
|
|
break;
|
|
case 0x04: // ack from client
|
|
data = (uint8_t *)malloc(1);
|
|
*data = (uint8_t)header.data[0];
|
|
return data;
|
|
break;
|
|
case 0x05: //mouse event
|
|
//LOG("MOuse event %d\n", header.data[4]);
|
|
SendPointerEvent(user_data->vncl, header.data[0] | (header.data[1] << 8), header.data[2] | (header.data[3] << 8), header.data[4]);
|
|
break;
|
|
case 0x06: // key board event
|
|
//LOG("Key is %c\n", header.data[0]);
|
|
SendKeyEvent(user_data->vncl, header.data[0] | (header.data[1] << 8), header.data[2] ? TRUE : FALSE);
|
|
break;
|
|
case 0x07:
|
|
SendClientCutText(user_data->vncl, (char*)header.data, strlen((char*)header.data));
|
|
break;
|
|
default:
|
|
return vnc_fatal(user_data, "Unknown client command");
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
static void got_clipboard(rfbClient *cl, const char *text, int len)
|
|
{
|
|
LOG("received clipboard text '%s'\n", text);
|
|
void *data = rfbClientGetClientData(cl, cl);
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
uint8_t *cmd = (uint8_t *)malloc(len + 1);
|
|
cmd[0] = 0x85;
|
|
memcpy(cmd + 1, text, len);
|
|
ws_b(user_data->wscl->client, cmd, len + 1);
|
|
free(cmd);
|
|
uint8_t *ack = (uint8_t *)process(user_data, 1);
|
|
if (!ack || !(*ack))
|
|
{
|
|
LOG("Fail to set client clipboard\n");
|
|
if (ack)
|
|
free(ack);
|
|
return;
|
|
}
|
|
free(ack);
|
|
}
|
|
|
|
void event_loop(void* data)
|
|
{
|
|
wvnc_user_data_t *user_data = get_user_data(data);
|
|
rfbClient *vncl = NULL;
|
|
vncl = rfbGetClient(8, 3, 4);
|
|
vncl->MallocFrameBuffer = resize;
|
|
vncl->canHandleNewFBSize = TRUE;
|
|
vncl->GotFrameBufferUpdate = update;
|
|
vncl->GetPassword = get_password;
|
|
//cl->HandleKeyboardLedState=kbd_leds;
|
|
//cl->HandleTextChat=text_chat;
|
|
vncl->GotXCutText = got_clipboard;
|
|
vncl->GetCredential = get_credential;
|
|
vncl->listenPort = LISTEN_PORT_OFFSET;
|
|
vncl->listen6Port = LISTEN_PORT_OFFSET;
|
|
user_data->status = READY; // 1 for ready for connect
|
|
user_data->vncl = vncl;
|
|
rfbClientSetClientData(vncl, vncl, user_data);
|
|
waitfor((void*) user_data);
|
|
// child
|
|
if( user_data->vncl && user_data->vncl->frameBuffer)
|
|
{
|
|
free(user_data->vncl->frameBuffer);
|
|
user_data->vncl->frameBuffer = NULL;
|
|
}
|
|
if (user_data->vncl)
|
|
rfbClientCleanup(user_data->vncl);
|
|
// close the connection before free data
|
|
destroy_request(user_data->wscl);
|
|
free(user_data);
|
|
}
|
|
void* handle(void *data)
|
|
{
|
|
antd_request_t *rq = (antd_request_t *)data;
|
|
pthread_t th;
|
|
antd_task_t *task = NULL;
|
|
void *cl = (void *)rq->client;
|
|
if (ws_enable(rq->request))
|
|
{
|
|
wvnc_user_data_t *user_data = (wvnc_user_data_t *)malloc(sizeof(wvnc_user_data_t));
|
|
user_data->wscl = rq;
|
|
if (pthread_create(&th, NULL,(void* (*)(void *))event_loop, (void*)user_data) != 0)
|
|
{
|
|
free(user_data);
|
|
perror("pthread_create: cannot create thread for wvnc\n");
|
|
}
|
|
else
|
|
{
|
|
pthread_detach(th);
|
|
task = antd_create_task(NULL, NULL, NULL);
|
|
task->priority++;
|
|
return task;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
html(cl);
|
|
__t(cl, "Welcome to WVNC, please use a websocket connection");
|
|
|
|
}
|
|
task = antd_create_task(NULL, (void *)rq, NULL);
|
|
task->priority++;
|
|
return task;
|
|
//LOG("%s\n", "EXIT Streaming..");
|
|
}
|
|
void init()
|
|
{
|
|
|
|
}
|
|
void destroy()
|
|
{
|
|
|
|
} |