diff options
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, |