~ubuntu-branches/ubuntu/precise/network-manager/precise

« back to all changes in this revision

Viewing changes to libnm-glib/nm-client.h

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-02-09 16:45:41 UTC
  • mfrom: (1.1.53)
  • Revision ID: package-import@ubuntu.com-20120209164541-4h90zknlsfdb7x35
Tags: 0.9.2.0+git201202091925.c721477-0ubuntu1
* upstream snapshot 2012-02-09 19:25:59 (GMT)
  + c721477d11d4fe144111d6d2eec8f93f2e9186c9
* debian/patches/avoid-periodic-disk-wakeups.patch: refreshed.
* debian/patches/nl3-default-ip6-route.patch: refreshed.
* debian/libnm-glib4.symbols: add symbols:
  + nm_active_connection_get_master@Base
  + nm_client_new_async@Base
  + nm_client_new_finish@Base
  + nm_remote_settings_new_async@Base
  + nm_remote_settings_new_finish@Base
  + nm_device_get_state_reason@Base
* debian/libnm-util2.symbols: add symbols:
  + nm_setting_802_1x_get_pac_file@Base
  + nm_setting_infiniband_get_transport_mode@Base

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <glib.h>
28
28
#include <glib-object.h>
 
29
#include <gio/gio.h>
29
30
#include <dbus/dbus-glib.h>
30
31
#include <NetworkManager.h>
31
32
#include "nm-object.h"
106
107
 
107
108
NMClient *nm_client_new (void);
108
109
 
 
110
void      nm_client_new_async  (GCancellable         *cancellable,
 
111
                                GAsyncReadyCallback   callback,
 
112
                                gpointer              user_data);
 
113
NMClient *nm_client_new_finish (GAsyncResult         *result,
 
114
                                GError              **error);
 
115
 
109
116
const GPtrArray *nm_client_get_devices    (NMClient *client);
110
117
NMDevice *nm_client_get_device_by_path    (NMClient *client, const char *object_path);
111
118
NMDevice *nm_client_get_device_by_iface   (NMClient *client, const char *iface);
156
163
NMState   nm_client_get_state            (NMClient *client);
157
164
gboolean  nm_client_get_manager_running  (NMClient *client);
158
165
const GPtrArray *nm_client_get_active_connections (NMClient *client);
159
 
void      nm_client_sleep                (NMClient *client, gboolean sleep);
 
166
void      nm_client_sleep                (NMClient *client, gboolean sleep_);
160
167
 
161
168
NMClientPermissionResult nm_client_get_permission_result (NMClient *client,
162
169
                                                          NMClientPermission permission);