This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository libx2goclient. from 43044e2 misc: update modeline to match style more accurately. new 5434c9c src/x2goclient-network-ssh.c: add some other static function definitions for good. new 5394dbd src/x2goclient-network-ssh.c: reorder static function definitions where necessary. new c2c779f src/x2goclient-network-ssh.c: fix comment regarding wait call to subprocess. The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: src/x2goclient-network-ssh.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 5434c9c1eeafdd98d3dc4c64db2266dd5eb86006 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 13 17:21:07 2020 +0200 src/x2goclient-network-ssh.c: add some other static function definitions for good. --- src/x2goclient-network-ssh.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/x2goclient-network-ssh.c b/src/x2goclient-network-ssh.c index 175e12f..28ad5be 100644 --- a/src/x2goclient-network-ssh.c +++ b/src/x2goclient-network-ssh.c @@ -114,6 +114,11 @@ static void x2goclient_network_ssh_dispose (GObject *object); static void x2goclient_network_ssh_finalize (GObject *object); static void x2goclient_network_ssh_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *param_spec); static void x2goclient_network_ssh_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *param_spec); +static GSocketAddress* x2goclient_network_ssh_parse_sockspec_unix_socket (const GString *sockspec); +static guint16 x2goclient_network_ssh_parse_sockspec_port (const GString *portspec, GError **gerr); +static GString* x2goclient_network_ssh_sanitize_sockspec (const GString *sockspec); +static GSocketAddress* x2goclient_network_ssh_parse_sockspec_ip (const GString *sockspec, const gboolean want_v6, GError **gerr); +static GSocketAddress* x2goclient_network_ssh_parse_sockspec_alias (const GString *sockspec, GError **gerr); static GSocketAddress* x2goclient_network_ssh_parse_sockspec (X2GoClientNetwork *parent, const GString *sockspec); static gboolean x2goclient_network_ssh_parent_connect (X2GoClientNetwork *parent, GError **gerr); static gboolean x2goclient_network_ssh_kill_subprocesses (X2GoClientNetworkSSH *self); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit c2c779f4a73a7da216713b249e1dbd5c094abbf6 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 13 17:43:28 2020 +0200 src/x2goclient-network-ssh.c: fix comment regarding wait call to subprocess. --- src/x2goclient-network-ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x2goclient-network-ssh.c b/src/x2goclient-network-ssh.c index 03f9beb..9a4557f 100644 --- a/src/x2goclient-network-ssh.c +++ b/src/x2goclient-network-ssh.c @@ -660,7 +660,7 @@ static gboolean x2goclient_network_ssh_kill_subprocesses (X2GoClientNetworkSSH * /* * Try to wait for subprocess termination really hard. * The wait call should only fail if the operation was cancelled, but - * given that we don't do that (explicitly), it should occur in the + * given that we don't do that (explicitly), it should not occur in the * first place. */ g_log (NULL, G_LOG_LEVEL_CRITICAL, "Waiting on master connection subprocess termination was cancelled!\nError: %s\nThis should not have happened. Retrying.", wait_error->message); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit 5394dbd1e14c2d614c12fd8da0019aa0e60244ef Author: Mihai Moldovan <ionic@ionic.de> Date: Wed May 13 17:21:34 2020 +0200 src/x2goclient-network-ssh.c: reorder static function definitions where necessary. --- src/x2goclient-network-ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x2goclient-network-ssh.c b/src/x2goclient-network-ssh.c index 28ad5be..03f9beb 100644 --- a/src/x2goclient-network-ssh.c +++ b/src/x2goclient-network-ssh.c @@ -120,8 +120,8 @@ static GString* x2goclient_network_ssh_sanitize_sockspec (const GString *sockspe static GSocketAddress* x2goclient_network_ssh_parse_sockspec_ip (const GString *sockspec, const gboolean want_v6, GError **gerr); static GSocketAddress* x2goclient_network_ssh_parse_sockspec_alias (const GString *sockspec, GError **gerr); static GSocketAddress* x2goclient_network_ssh_parse_sockspec (X2GoClientNetwork *parent, const GString *sockspec); -static gboolean x2goclient_network_ssh_parent_connect (X2GoClientNetwork *parent, GError **gerr); static gboolean x2goclient_network_ssh_kill_subprocesses (X2GoClientNetworkSSH *self); +static gboolean x2goclient_network_ssh_parent_connect (X2GoClientNetwork *parent, GError **gerr); static void x2goclient_network_ssh_class_init (X2GoClientNetworkSSHClass *klass) { -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git