HomeSort by relevance Sort by last modified time
    Searched refs:tAuth (Results 1 - 3 of 3) sorted by null

  /external/libvncserver/libvncclient/
tls_gnutls.c 214 uint32_t tAuth[256], t;
226 if (count>sizeof(tAuth))
228 rfbClientLog("%d security types are too many; maximum is %d\n", count, sizeof(tAuth));
237 if (!ReadFromRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
238 t=rfbClientSwap32IfLE(tAuth[loop]);
252 if (!WriteToRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
254 tAuth[loop]=t;
262 snprintf(buf2, sizeof(buf2), (loop>0 ? ", %d" : "%d"), (int)tAuth[loop]);
tls_openssl.c 367 uint32_t tAuth[256], t;
379 if (count>sizeof(tAuth))
381 rfbClientLog("%d security types are too many; maximum is %d\n", count, sizeof(tAuth));
390 if (!ReadFromRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
391 t=rfbClientSwap32IfLE(tAuth[loop]);
405 if (!WriteToRFBServer(client, (char *)&tAuth[loop], 4)) return FALSE;
407 tAuth[loop]=t;
415 snprintf(buf2, sizeof(buf2), (loop>0 ? ", %d" : "%d"), (int)tAuth[loop]);
rfbproto.c 568 uint8_t tAuth[256];
586 if (!ReadFromRFBServer(client, (char *)&tAuth[loop], 1)) return FALSE;
587 rfbClientLog("%d) Received security type %d\n", loop, tAuth[loop]);
589 if (tAuth[loop]==rfbVncAuth || tAuth[loop]==rfbNoAuth ||
591 tAuth[loop]==rfbVeNCrypt ||
593 (tAuth[loop]==rfbARD && client->GetCredential) ||
594 (!subAuth && (tAuth[loop]==rfbTLS || (tAuth[loop]==rfbVeNCrypt && client->GetCredential))))
601 if (client->clientAuthSchemes[i]==(uint32_t)tAuth[loop]
    [all...]

Completed in 80 milliseconds