Milestone 5: deliver embedded RDP sessions and lifecycle hardening
This commit is contained in:
87
third_party/FreeRDP/client/common/test/TestClientChannels.c
vendored
Normal file
87
third_party/FreeRDP/client/common/test/TestClientChannels.c
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <winpr/crt.h>
|
||||
#include <winpr/windows.h>
|
||||
|
||||
#include <freerdp/client/channels.h>
|
||||
#include <freerdp/channels/rdpsnd.h>
|
||||
|
||||
int TestClientChannels(int argc, char* argv[])
|
||||
{
|
||||
DWORD dwFlags = 0;
|
||||
FREERDP_ADDIN** ppAddins = nullptr;
|
||||
|
||||
WINPR_UNUSED(argc);
|
||||
WINPR_UNUSED(argv);
|
||||
dwFlags = FREERDP_ADDIN_DYNAMIC;
|
||||
|
||||
printf("Enumerate all\n");
|
||||
ppAddins = freerdp_channels_list_addins(nullptr, nullptr, nullptr, dwFlags);
|
||||
|
||||
for (size_t index = 0; ppAddins[index] != nullptr; index++)
|
||||
{
|
||||
FREERDP_ADDIN* pAddin = ppAddins[index];
|
||||
|
||||
printf("Addin: Name: %s Subsystem: %s Type: %s\n", pAddin->cName, pAddin->cSubsystem,
|
||||
pAddin->cType);
|
||||
}
|
||||
|
||||
freerdp_channels_addin_list_free(ppAddins);
|
||||
|
||||
printf("Enumerate rdpsnd\n");
|
||||
ppAddins = freerdp_channels_list_addins(RDPSND_CHANNEL_NAME, nullptr, nullptr, dwFlags);
|
||||
|
||||
for (size_t index = 0; ppAddins[index] != nullptr; index++)
|
||||
{
|
||||
FREERDP_ADDIN* pAddin = ppAddins[index];
|
||||
|
||||
printf("Addin: Name: %s Subsystem: %s Type: %s\n", pAddin->cName, pAddin->cSubsystem,
|
||||
pAddin->cType);
|
||||
}
|
||||
|
||||
freerdp_channels_addin_list_free(ppAddins);
|
||||
|
||||
#if defined(CHANNEL_TSMF_CLIENT)
|
||||
printf("Enumerate tsmf video\n");
|
||||
ppAddins = freerdp_channels_list_addins("tsmf", nullptr, "video", dwFlags);
|
||||
|
||||
for (size_t index = 0; ppAddins[index] != nullptr; index++)
|
||||
{
|
||||
FREERDP_ADDIN* pAddin = ppAddins[index];
|
||||
|
||||
printf("Addin: Name: %s Subsystem: %s Type: %s\n", pAddin->cName, pAddin->cSubsystem,
|
||||
pAddin->cType);
|
||||
}
|
||||
|
||||
freerdp_channels_addin_list_free(ppAddins);
|
||||
#endif
|
||||
|
||||
ppAddins = freerdp_channels_list_addins("unknown", nullptr, nullptr, dwFlags);
|
||||
|
||||
for (size_t index = 0; ppAddins[index] != nullptr; index++)
|
||||
{
|
||||
FREERDP_ADDIN* pAddin = ppAddins[index];
|
||||
|
||||
printf("Addin: Name: %s Subsystem: %s Type: %s\n", pAddin->cName, pAddin->cSubsystem,
|
||||
pAddin->cType);
|
||||
}
|
||||
|
||||
freerdp_channels_addin_list_free(ppAddins);
|
||||
|
||||
printf("Enumerate static addins\n");
|
||||
|
||||
dwFlags = FREERDP_ADDIN_STATIC;
|
||||
ppAddins = freerdp_channels_list_addins(nullptr, nullptr, nullptr, dwFlags);
|
||||
|
||||
for (size_t index = 0; ppAddins[index] != nullptr; index++)
|
||||
{
|
||||
FREERDP_ADDIN* pAddin = ppAddins[index];
|
||||
|
||||
printf("Addin: Name: %s Subsystem: %s Type: %s\n", pAddin->cName, pAddin->cSubsystem,
|
||||
pAddin->cType);
|
||||
}
|
||||
|
||||
freerdp_channels_addin_list_free(ppAddins);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user