Lines Matching defs:vncServer
267 rfbScreenInfoPtr vncServer = rfbGetScreen(0, NULL, dummyWidth, dummyHeight, 8, 3, VNC_SIZEOFRGBA);
268 instance->mVNCServer = vncServer;
281 vncServer->serverFormat.redShift = 16;
282 vncServer->serverFormat.greenShift = 8;
283 vncServer->serverFormat.blueShift = 0;
284 vncServer->screenData = (void *)instance;
285 vncServer->desktopName = "VBoxVNC";
298 if (!rfbStringToAddr(szAddress, &vncServer->listenInterface))
309 vncServer->port = port;
326 vncServer->autoPort = 1;
328 vncServer->port = port;
331 vncServer->autoPort = 1;
336 rfbInitServer(vncServer);
338 vncServer->newClientHook = rfbNewClientEvent;
339 vncServer->kbdAddEvent = vncKeyboardEvent;
340 vncServer->ptrAddEvent = vncMouseEvent;
343 port = vncServer->port;
598 vncServer->autoPort = 1;
601 vncServer->port = uServerPort4;
602 vncServer->ipv6port = uServerPort6;
605 if (!rfbStringToAddr(pszServerAddress4,&vncServer->listenInterface))
608 vncServer->listen6Interface = pszServerAddress6;
610 rfbInitServer(vncServer);
612 vncServer->newClientHook = rfbNewClientEvent;
613 vncServer->kbdAddEvent = vncKeyboardEvent;
614 vncServer->ptrAddEvent = vncMouseEvent;
618 port = vncServer->ipv6port;
620 if (vncServer->listen6Sock < 0)
674 vncServer->authPasswdData = (void *)instance->apszVNCPasswordStruct;
675 vncServer->passwordCheck = rfbCheckPasswordByList;
682 rfbRunEventLoop(vncServer, -1, TRUE);