device: renew dhcp leases on awake for software devices
[NetworkManager.git] / libnm / nm-remote-connection.h
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /*
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the
15  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16  * Boston, MA 02110-1301 USA.
17  *
18  * Copyright 2007 - 2008 Novell, Inc.
19  * Copyright 2007 - 2011 Red Hat, Inc.
20  */
21
22 #ifndef __NM_REMOTE_CONNECTION_H__
23 #define __NM_REMOTE_CONNECTION_H__
24
25 #if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
26 #error "Only <NetworkManager.h> can be included directly."
27 #endif
28
29 #include <nm-object.h>
30
31 G_BEGIN_DECLS
32
33 #define NM_TYPE_REMOTE_CONNECTION            (nm_remote_connection_get_type ())
34 #define NM_REMOTE_CONNECTION(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnection))
35 #define NM_REMOTE_CONNECTION_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionClass))
36 #define NM_IS_REMOTE_CONNECTION(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_REMOTE_CONNECTION))
37 #define NM_IS_REMOTE_CONNECTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_REMOTE_CONNECTION))
38 #define NM_REMOTE_CONNECTION_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_REMOTE_CONNECTION, NMRemoteConnectionClass))
39
40
41 /* Properties */
42 #define NM_REMOTE_CONNECTION_DBUS_CONNECTION "dbus-connection"
43 #define NM_REMOTE_CONNECTION_PATH            "path"
44 #define NM_REMOTE_CONNECTION_UNSAVED         "unsaved"
45 #define NM_REMOTE_CONNECTION_VISIBLE         "visible"
46
47 struct _NMRemoteConnection {
48         NMObject parent;
49 };
50
51 typedef struct {
52         NMObjectClass parent_class;
53
54         /*< private >*/
55         gpointer padding[8];
56 } NMRemoteConnectionClass;
57
58 GType nm_remote_connection_get_type (void);
59
60 gboolean nm_remote_connection_commit_changes        (NMRemoteConnection *connection,
61                                                      gboolean save_to_disk,
62                                                      GCancellable *cancellable,
63                                                      GError **error);
64 void     nm_remote_connection_commit_changes_async  (NMRemoteConnection *connection,
65                                                      gboolean save_to_disk,
66                                                      GCancellable *cancellable,
67                                                      GAsyncReadyCallback callback,
68                                                      gpointer user_data);
69 gboolean nm_remote_connection_commit_changes_finish (NMRemoteConnection *connection,
70                                                      GAsyncResult *result,
71                                                      GError **error);
72
73 gboolean nm_remote_connection_save        (NMRemoteConnection *connection,
74                                            GCancellable *cancellable,
75                                            GError **error);
76 void     nm_remote_connection_save_async  (NMRemoteConnection *connection,
77                                            GCancellable *cancellable,
78                                            GAsyncReadyCallback callback,
79                                            gpointer user_data);
80 gboolean nm_remote_connection_save_finish (NMRemoteConnection *connection,
81                                            GAsyncResult *result,
82                                            GError **error);
83
84 gboolean nm_remote_connection_delete        (NMRemoteConnection *connection,
85                                              GCancellable *cancellable,
86                                              GError **error);
87 void     nm_remote_connection_delete_async  (NMRemoteConnection *connection,
88                                              GCancellable *cancellable,
89                                              GAsyncReadyCallback callback,
90                                              gpointer user_data);
91 gboolean nm_remote_connection_delete_finish (NMRemoteConnection *connection,
92                                              GAsyncResult *result,
93                                              GError **error);
94
95 GVariant *nm_remote_connection_get_secrets        (NMRemoteConnection *connection,
96                                                    const char *setting_name,
97                                                    GCancellable *cancellable,
98                                                    GError **error);
99 void      nm_remote_connection_get_secrets_async  (NMRemoteConnection *connection,
100                                                    const char *setting_name,
101                                                    GCancellable *cancellable,
102                                                    GAsyncReadyCallback callback,
103                                                    gpointer user_data);
104 GVariant *nm_remote_connection_get_secrets_finish (NMRemoteConnection *connection,
105                                                    GAsyncResult *result,
106                                                    GError **error);
107
108 gboolean nm_remote_connection_get_unsaved (NMRemoteConnection *connection);
109
110 gboolean nm_remote_connection_get_visible (NMRemoteConnection *connection);
111
112 G_END_DECLS
113
114 #endif  /* __NM_REMOTE_CONNECTION__ */