You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@guacamole.apache.org by vn...@apache.org on 2020/07/08 12:30:57 UTC

[guacamole-server] branch master updated (f0dee00 -> a2fb090)

This is an automated email from the ASF dual-hosted git repository.

vnick pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-server.git.


    from f0dee00  GUACAMOLE-1110: Merge support for running the "guacd" Docker image as a specific service user.
     add a8151c4  GUACAMOLE-221: Implement libguac convenience API for awaiting and processing argument streams.
     add f8f2c7f  GUACAMOLE-221: Allow callers to request that argument values be automatically echoed to all connected users.
     add 2f6de25  GUACAMOLE-221: Migrate SSH handling of "argv" to guac_argv_*() convenience API.
     add 08a57d3  GUACAMOLE-221: Migrate telnet handling of "argv" to guac_argv_*() convenience API.
     add aa3a9cd  GUACAMOLE-221: Migrate Kubernetes handling of "argv" to guac_argv_*() convenience API.
     add 0cdc51a  GUACAMOLE-221: Correct faulty double-increment of args (should advance ONE at a time).
     new a2fb090  GUACAMOLE-221: Merge add convenience API for automatically handling received "argv" streams.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/libguac/Makefile.am                |   4 +
 src/libguac/argv.c                     | 350 +++++++++++++++++++++++++++++++++
 src/libguac/guacamole/argv-constants.h |  71 +++++++
 src/libguac/guacamole/argv-fntypes.h   |  62 ++++++
 src/libguac/guacamole/argv.h           | 128 ++++++++++++
 src/protocols/kubernetes/argv.c        | 182 +++--------------
 src/protocols/kubernetes/argv.h        |  25 ++-
 src/protocols/kubernetes/client.c      |   7 +
 src/protocols/kubernetes/settings.c    |   7 +-
 src/protocols/kubernetes/user.c        |   2 +-
 src/protocols/ssh/argv.c               | 181 ++---------------
 src/protocols/ssh/argv.h               |  25 ++-
 src/protocols/ssh/client.c             |   7 +
 src/protocols/ssh/settings.c           |   7 +-
 src/protocols/ssh/user.c               |   3 +-
 src/protocols/telnet/argv.c            | 181 ++---------------
 src/protocols/telnet/argv.h            |  25 ++-
 src/protocols/telnet/client.c          |   7 +
 src/protocols/telnet/settings.c        |   7 +-
 src/protocols/telnet/user.c            |   2 +-
 20 files changed, 773 insertions(+), 510 deletions(-)
 create mode 100644 src/libguac/argv.c
 create mode 100644 src/libguac/guacamole/argv-constants.h
 create mode 100644 src/libguac/guacamole/argv-fntypes.h
 create mode 100644 src/libguac/guacamole/argv.h


[guacamole-server] 01/01: GUACAMOLE-221: Merge add convenience API for automatically handling received "argv" streams.

Posted by vn...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vnick pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/guacamole-server.git

commit a2fb09021b56916fcb93e6345ffc799524d7c32d
Merge: f0dee00 0cdc51a
Author: Virtually Nick <ne...@users.noreply.github.com>
AuthorDate: Wed Jul 8 08:30:47 2020 -0400

    GUACAMOLE-221: Merge add convenience API for automatically handling received "argv" streams.

 src/libguac/Makefile.am                |   4 +
 src/libguac/argv.c                     | 350 +++++++++++++++++++++++++++++++++
 src/libguac/guacamole/argv-constants.h |  71 +++++++
 src/libguac/guacamole/argv-fntypes.h   |  62 ++++++
 src/libguac/guacamole/argv.h           | 128 ++++++++++++
 src/protocols/kubernetes/argv.c        | 182 +++--------------
 src/protocols/kubernetes/argv.h        |  25 ++-
 src/protocols/kubernetes/client.c      |   7 +
 src/protocols/kubernetes/settings.c    |   7 +-
 src/protocols/kubernetes/user.c        |   2 +-
 src/protocols/ssh/argv.c               | 181 ++---------------
 src/protocols/ssh/argv.h               |  25 ++-
 src/protocols/ssh/client.c             |   7 +
 src/protocols/ssh/settings.c           |   7 +-
 src/protocols/ssh/user.c               |   3 +-
 src/protocols/telnet/argv.c            | 181 ++---------------
 src/protocols/telnet/argv.h            |  25 ++-
 src/protocols/telnet/client.c          |   7 +
 src/protocols/telnet/settings.c        |   7 +-
 src/protocols/telnet/user.c            |   2 +-
 20 files changed, 773 insertions(+), 510 deletions(-)