summary refs log tree commit diff
path: root/src/nm-checkpoint-manager.h
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2018-05-11 22:08:45 +0200
committerMichael Biebl <biebl@debian.org>2018-05-11 22:08:45 +0200
commitee9c73a923909e23a649407be77e25235d769e25 (patch)
treee21c923621fa278e737da693df9eb60ea31a6067 /src/nm-checkpoint-manager.h
parentf60117b41d5433be1b4a96d82cd11d0c3dce9b63 (diff)
New upstream version 1.10.8 upstream/1.10.8
Diffstat (limited to 'src/nm-checkpoint-manager.h')
-rw-r--r--src/nm-checkpoint-manager.h24
1 files changed, 6 insertions, 18 deletions
diff --git a/src/nm-checkpoint-manager.h b/src/nm-checkpoint-manager.h
index ca66ef16..30e49041 100644
--- a/src/nm-checkpoint-manager.h
+++ b/src/nm-checkpoint-manager.h
@@ -27,13 +27,8 @@
 
 typedef struct _NMCheckpointManager NMCheckpointManager;
 
-NMCheckpointManager *nm_checkpoint_manager_new (NMManager *manager, GParamSpec *spec);
-
-void nm_checkpoint_manager_free (NMCheckpointManager *self);
-
-NMCheckpoint *nm_checkpoint_manager_lookup_by_path (NMCheckpointManager *self,
-                                                    const char *path,
-                                                    GError **error);
+NMCheckpointManager *nm_checkpoint_manager_new (NMManager *manager);
+void nm_checkpoint_manager_unref (NMCheckpointManager *self);
 
 NMCheckpoint *nm_checkpoint_manager_create (NMCheckpointManager *self,
                                             const char *const*device_names,
@@ -41,22 +36,15 @@ NMCheckpoint *nm_checkpoint_manager_create (NMCheckpointManager *self,
                                             NMCheckpointCreateFlags flags,
                                             GError **error);
 
-void nm_checkpoint_manager_destroy_all (NMCheckpointManager *self);
+gboolean nm_checkpoint_manager_destroy_all (NMCheckpointManager *self,
+                                            GError **error);
 
 gboolean nm_checkpoint_manager_destroy (NMCheckpointManager *self,
-                                        const char *path,
+                                        const char *checkpoint_path,
                                         GError **error);
 gboolean nm_checkpoint_manager_rollback (NMCheckpointManager *self,
-                                         const char *path,
+                                         const char *checkpoint_path,
                                          GVariant **results,
                                          GError **error);
 
-gboolean nm_checkpoint_manager_adjust_rollback_timeout (NMCheckpointManager *self,
-                                                        const char *path,
-                                                        guint32 add_timeout,
-                                                        GError **error);
-
-const char **nm_checkpoint_manager_get_checkpoint_paths (NMCheckpointManager *self,
-                                                         guint *out_length);
-
 #endif /* __NM_CHECKPOINT_MANAGER_H__ */