This repository was archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathREADME
More file actions
35 lines (25 loc) · 1.63 KB
/
README
File metadata and controls
35 lines (25 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FreeRDP-WebConnect will be a gateway for seamless access to your RDP-Sessions
in any HTML5-compliant browser. In particular it relies on the
Canvas (http://www.w3.org/TR/2dcontext/) and
WebSockets (http://www.w3.org/TR/websockets/) feature.
The server side WebSockets implementation handles current RFC6455
(http://tools.ietf.org/html/rfc6455) only, so browsers that implement
the older drafts do *not* work. With RFC6455 being raised to the
"Proposed Standard" level, this should change now really soon.
On the server side, a standalone daemon - written in C++ - provides a
Web page via HTTPS (or HTTP, if configured) and uses FreeRDP libs to
connect as a client to any RDP session.
Although the project is still in a very early development phase (project was started
on April 3, 2012), it already can display an RDP session right now.
Added automated build/install script setup-all.sh
For unattended setup, installing all prereqs and deleting conflicting packages, run the script as root, specifying the following command:
./setup-all.sh -f -i -d
For addition details on the setup script and webconnect prereqs consult wsgate/README.
FreeRDP-WebConnect also uses a plugin system based on shared objects that will be placed in a "plugins" subdirectory
In order to implement a new plugin, one must build a new shared library that will include the following files
/wsgate/pluginTemplate/pluginCommon.cpp
this facilitates the query parsing for easier use
/wsgate/pluginTemplate/pluginCommon.hpp
and also an implementation of entryPoint function as described in
/wsgate/pluginTemplate/pluginExample.cpp
One can also follow the pluginOpenstack for reference