GUACAMOLE-221: Clean up VNC mutex; update comments.
This commit is contained in:
parent
0761908a77
commit
b00b629b96
@ -226,6 +226,7 @@ int guac_rdp_client_free_handler(guac_client* client) {
|
|||||||
|
|
||||||
/* Destroy the pthread conditional handler */
|
/* Destroy the pthread conditional handler */
|
||||||
pthread_cond_destroy(&(rdp_client->rdp_credential_cond));
|
pthread_cond_destroy(&(rdp_client->rdp_credential_cond));
|
||||||
|
pthread_mutex_destroy(&(rdp_client->rdp_credential_lock));
|
||||||
|
|
||||||
pthread_rwlock_destroy(&(rdp_client->lock));
|
pthread_rwlock_destroy(&(rdp_client->lock));
|
||||||
|
|
||||||
|
@ -184,6 +184,10 @@ typedef struct guac_rdp_client {
|
|||||||
/**
|
/**
|
||||||
* Flags for tracking events related to the rdp_credential_cond
|
* Flags for tracking events related to the rdp_credential_cond
|
||||||
* pthread condition.
|
* pthread condition.
|
||||||
|
*
|
||||||
|
* @see GUAC_RDP_CRED_FLAG_USERNAME
|
||||||
|
* @see GUAC_RDP_CRED_FLAG_PASSWORD
|
||||||
|
* @see GUAC_RDP_CRED_FLAG_DOMAIN
|
||||||
*/
|
*/
|
||||||
unsigned rdp_credential_flags;
|
unsigned rdp_credential_flags;
|
||||||
|
|
||||||
|
@ -159,6 +159,9 @@ typedef struct guac_vnc_client {
|
|||||||
/**
|
/**
|
||||||
* A field to track flags related to retrieving required credentials
|
* A field to track flags related to retrieving required credentials
|
||||||
* from the client.
|
* from the client.
|
||||||
|
*
|
||||||
|
* @see GUAC_VNC_COND_FLAG_USERNAME
|
||||||
|
* @see GUAC_VNC_COND_FLAG_PASSWORD
|
||||||
*/
|
*/
|
||||||
unsigned vnc_credential_flags;
|
unsigned vnc_credential_flags;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user