Replies: 2 comments
-
I've find the xrdp's src code https://github.com/neutrinolabs/xrdp/blob/devel/xrdp/xrdp_mm.c#L372 xrdp_mm_sync_load(long param1, long param2)
{
long rv;
char *libname;
libname = (char *)param1;
rv = g_load_library(libname);
return rv;
}
/* Let the main thread load the lib,*/
self->mod_handle = g_xrdp_sync(xrdp_mm_sync_load, (tintptr)text, 0); It's pluggable loaded when a connection establishing (After login with confirm button), Can pluggable |
Beta Was this translation helpful? Give feedback.
0 replies
-
No it can't. You'll need a shared library for this code to work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Help Please
Build: Static built Xrdp with clang, got the static files
xrdp v0.9.16, build env: Alpine 3.15
Then try trans
libvnc.a
tolibvnc.so
Error: But when run xrdp got error when communicate with
libvnc.so
.The error
error loading libvnc.so specified in xrdp.ini
Beta Was this translation helpful? Give feedback.
All reactions