diff options
| author | Michael Biebl <biebl@debian.org> | 2019-07-31 10:51:42 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2019-07-31 10:51:42 +0200 |
| commit | 2e5fa45ddfbb5cffa1e78221f1cea706e2f298af (patch) | |
| tree | 86f69d36c56de3074280456eddc854a780b8e04b /libnm/nm-client.h | |
| parent | 85563b7fc7ec2cd21e38debb9b28db342e2e8e7c (diff) | |
New upstream version 1.19.90 upstream/1.19.90
Diffstat (limited to 'libnm/nm-client.h')
| -rw-r--r-- | libnm/nm-client.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/libnm/nm-client.h b/libnm/nm-client.h index edb3ed78..ec7022ff 100644 --- a/libnm/nm-client.h +++ b/libnm/nm-client.h @@ -1,4 +1,3 @@ -/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -266,6 +265,9 @@ NM_AVAILABLE_IN_1_10 void nm_client_connectivity_check_set_enabled (NMClient *client, gboolean enabled); +NM_AVAILABLE_IN_1_20 +const char *nm_client_connectivity_check_get_uri (NMClient *client); + gboolean nm_client_get_logging (NMClient *client, char **level, char **domains, @@ -387,6 +389,22 @@ NMRemoteConnection *nm_client_add_connection_finish (NMClient *client, GAsyncResult *result, GError **error); +NM_AVAILABLE_IN_1_20 +void nm_client_add_connection2 (NMClient *client, + GVariant *settings, + NMSettingsAddConnection2Flags flags, + GVariant *args, + gboolean ignore_out_result, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); + +NM_AVAILABLE_IN_1_20 +NMRemoteConnection *nm_client_add_connection2_finish (NMClient *client, + GAsyncResult *result, + GVariant **out_result, + GError **error); + gboolean nm_client_load_connections (NMClient *client, char **filenames, char ***failures, |