mirror of https://github.com/FreeRDP/FreeRDP
server/shadow: integrate comment from @hardening
Return directly at subsystem->ClientConnect Also change to argument to accept shadow_client instead of freerdp_peer
This commit is contained in:
parent
b169dfd930
commit
2335a307cb
|
@ -64,8 +64,8 @@ typedef int (*pfnShadowEnumMonitors)(MONITOR_DEF* monitors, int maxMonitors);
|
|||
|
||||
typedef int (*pfnShadowAuthenticate)(rdpShadowSubsystem* subsystem,
|
||||
const char* user, const char* domain, const char* password);
|
||||
typedef int (*pfnShadowClientConnect)(rdpShadowSubsystem* subsystem, freerdp_peer* peer);
|
||||
typedef void (*pfnShadowClientDisconnect)(rdpShadowSubsystem* subsystem, freerdp_peer* peer);
|
||||
typedef BOOL (*pfnShadowClientConnect)(rdpShadowSubsystem* subsystem, rdpShadowClient* client);
|
||||
typedef void (*pfnShadowClientDisconnect)(rdpShadowSubsystem* subsystem, rdpShadowClient* client);
|
||||
|
||||
typedef int (*pfnShadowSynchronizeEvent)(rdpShadowSubsystem* subsystem, UINT32 flags);
|
||||
typedef int (*pfnShadowKeyboardEvent)(rdpShadowSubsystem* subsystem, UINT16 flags, UINT16 code);
|
||||
|
|
|
@ -250,10 +250,7 @@ BOOL shadow_client_post_connect(freerdp_peer* peer)
|
|||
|
||||
if (subsystem->ClientConnect)
|
||||
{
|
||||
if (subsystem->ClientConnect(subsystem, peer))
|
||||
return TRUE;
|
||||
else
|
||||
return FALSE;
|
||||
return subsystem->ClientConnect(subsystem, client);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
|
@ -1084,7 +1081,7 @@ void* shadow_client_thread(rdpShadowClient* client)
|
|||
|
||||
if (peer->connected && subsystem->ClientDisconnect)
|
||||
{
|
||||
subsystem->ClientDisconnect(subsystem, peer);
|
||||
subsystem->ClientDisconnect(subsystem, client);
|
||||
}
|
||||
|
||||
out:
|
||||
|
|
Loading…
Reference in New Issue