Exemple #1
0
/* Establish a reconnection up to the RDP layer */
BOOL
rdp_reconnect(char *server, uint32 flags, char *domain, char *password,
	      char *command, char *directory, char *cookie)
{
	if (!sec_reconnect(server))
		return False;

	rdp_send_logon_info(flags, domain, g_username, password, command, directory);
	return True;
}
Exemple #2
0
/* Establish a reconnection up to the RDP layer */
BOOL
rdp_reconnect(RDPCLIENT * This, char *server, uint32 flags, wchar_t *username, wchar_t *domain, wchar_t *password,
	      wchar_t *command, wchar_t *directory, wchar_t *hostname, char *cookie)
{
	if (!sec_reconnect(This, server, hostname, cookie))
		return False;

	rdp_send_logon_info(This, flags, domain, username, password, command, directory);
	return True;
}