This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository libx2goclient. commit ca3938f5b06c0b21760c10d9ceae6cfec32402b9 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Aug 3 12:45:37 2020 +0200 src/x2goclient-network.{c,h}: add new private parent_connect function pointer, to be used for x2goclient_network_connect (). --- src/x2goclient-network.c | 2 ++ src/x2goclient-network.h | 1 + 2 files changed, 3 insertions(+) diff --git a/src/x2goclient-network.c b/src/x2goclient-network.c index 811d6e9..83f51b1 100644 --- a/src/x2goclient-network.c +++ b/src/x2goclient-network.c @@ -130,6 +130,8 @@ static void x2goclient_network_class_init (X2GoClientNetworkClass * const klass) G_PARAM_STATIC_STRINGS | G_PARAM_READABLE); g_object_class_install_properties (object_class, X2GO_NET_N_PROPERTIES, net_obj_properties); + + klass->parent_connect = &x2goclient_network_connect; } static void x2goclient_network_init (X2GoClientNetwork * const self) { diff --git a/src/x2goclient-network.h b/src/x2goclient-network.h index cf96c35..5e0c15d 100644 --- a/src/x2goclient-network.h +++ b/src/x2goclient-network.h @@ -59,6 +59,7 @@ struct _X2GoClientNetworkClass { /*< private >*/ GSocketAddress* (*parse_sockspec) (X2GoClientNetwork * const self, const GString * const sockspec); + gboolean (*parent_connect) (X2GoClientNetwork * const self, GError ** const gerr); /* We might need a lot more functions... */ gpointer padding[50]; -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/libx2goclient.git