The KVM Proxy Library API includes the following definitions:
LENGTH_URL
This value is used to define the maximum length of a URL in the ConnectionData structure.
#define LENGTH_URL 256
LENGTH_USER_NAME
This value is used to define the maximum length of a user name in the ConnectionData structure.
#define LENGTH_USER_NAME 256
LENGTH_PWD
This value is used to define the maximum length of a password in the ConnectionData structure.
#define LENGTH_PWD 256
LENGTH_DOMAIN
This value is used to define the maximum length of a domain name in the ConnectionData structure.
#define LENGTH_DOMAIN 256
This enumeration defines possible reasons for a connection failing before an RFB session was established.
typedef enum
{
Disconnected = 1,
DisconnectedSessionManagerFailed = 2,
DisconnectedTLSFailed = 3,
DisconnectedSocksError = 4,
DisconnectedSocksAuthFailed = 5,
DisconnectedAuditLogFullOrLocked = 6,
DisconnectedInvalidParameter = 7
} ConnectionStatus;
Copyright © 2006-2022, Intel Corporation. All rights reserved. |