0927114e83
It would be good if we have a easy way to call aFreeRDP in another Android APP (Requirement also mentioned in #2720) We can define a scheme (freerdp://) as unified way to launch FreeRDP from another APP or browser and connect to compatible RDP server 1. Define scheme freerdp:// 2. General form could be freerdp://user@hostname:port/connect?key1=value&key2=-&key3=%2b&key4= 3. [user] part would be translated to /u: 4. [hostname:port] would be translated to /v: 5. The [user@hostname:port] part would be used as app title, currently it's just the progress dialog title 6. query parameters would be translated to command line arguments. Later same arguments will overwrite the formers: a. key1=value: => /key1:value b. key2=-: => -key2 c. key3=%2b => +key3 (%2b is url encoded +) d. key4= => /key4 e. Especially, drive=sdcard will be properly handled with local sdcard path. On my device it will be translated to /drive:sdcard,/storage/emulated/0 Owing to the refactor work in PR #3097, we now pass same command line argument to JNI for freerdp settings. We just need to make the SessionActivity accept freerdp scheme and translate argument from URI form to command line form. |
||
---|---|---|
.. | ||
Studio | ||
android_cliprdr.c | ||
android_cliprdr.h | ||
android_event.c | ||
android_event.h | ||
android_freerdp_jni.h | ||
android_freerdp.c | ||
android_freerdp.h | ||
android_jni_callback.c | ||
android_jni_callback.h | ||
android_jni_utils.c | ||
android_jni_utils.h | ||
CMakeLists.txt |