You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by mj...@apache.org on 2016/03/20 03:24:39 UTC

[09/50] incubator-guacamole-server git commit: Merge pull request #124 from glyptodon/screen-sharing-telnet

Merge pull request #124 from glyptodon/screen-sharing-telnet

GUAC-1389: Add screen sharing support to telnet.

Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/399f9754
Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/399f9754
Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/399f9754

Branch: refs/heads/master
Commit: 399f97542acee48842cff01079595b490c38902e
Parents: 3f51d3d 35746ef
Author: James Muehlner <ja...@guac-dev.org>
Authored: Mon Mar 14 20:33:40 2016 -0700
Committer: James Muehlner <ja...@guac-dev.org>
Committed: Mon Mar 14 20:33:40 2016 -0700

----------------------------------------------------------------------
 Makefile.am                          |   2 +-
 src/protocols/telnet/Makefile.am     |  20 +-
 src/protocols/telnet/client.c        | 267 +++------------
 src/protocols/telnet/client.h        |  86 +----
 src/protocols/telnet/clipboard.c     |  21 +-
 src/protocols/telnet/clipboard.h     |  21 +-
 src/protocols/telnet/guac_handlers.c | 150 ---------
 src/protocols/telnet/guac_handlers.h |  62 ----
 src/protocols/telnet/input.c         | 132 ++++++++
 src/protocols/telnet/input.h         |  49 +++
 src/protocols/telnet/settings.c      | 281 ++++++++++++++++
 src/protocols/telnet/settings.h      | 199 +++++++++++
 src/protocols/telnet/telnet.c        | 531 ++++++++++++++++++++++++++++++
 src/protocols/telnet/telnet.h        |  96 ++++++
 src/protocols/telnet/telnet_client.c | 501 ----------------------------
 src/protocols/telnet/telnet_client.h |  50 ---
 src/protocols/telnet/user.c          |  83 +++++
 src/protocols/telnet/user.h          |  36 ++
 18 files changed, 1482 insertions(+), 1105 deletions(-)
----------------------------------------------------------------------