summaryrefslogtreecommitdiff
path: root/include/storage.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-01-04 19:02:00 +0100
committerMarcel Holtmann <marcel@holtmann.org>2009-01-04 19:02:00 +0100
commit186c1b8419c70a5649462e35fe0910099501a412 (patch)
treeb83d0b0d2737dc729eddc8a6ac1e796c5e1c1049 /include/storage.h
parent94fca351c2cd0a75ea6b71462a084dc8ffe2e78d (diff)
downloadconnman-186c1b8419c70a5649462e35fe0910099501a412.tar.gz
connman-186c1b8419c70a5649462e35fe0910099501a412.tar.bz2
connman-186c1b8419c70a5649462e35fe0910099501a412.zip
Add skeleton for storage drivers
Diffstat (limited to 'include/storage.h')
-rw-r--r--include/storage.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/include/storage.h b/include/storage.h
new file mode 100644
index 00000000..de4107cf
--- /dev/null
+++ b/include/storage.h
@@ -0,0 +1,56 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2009 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifndef __CONNMAN_STORAGE_H
+#define __CONNMAN_STORAGE_H
+
+#include <connman/device.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * SECTION:storage
+ * @title: Storage premitives
+ * @short_description: Functions for registering storage modules
+ */
+
+#define CONNMAN_STORAGE_PRIORITY_LOW -100
+#define CONNMAN_STORAGE_PRIORITY_DEFAULT 0
+#define CONNMAN_STORAGE_PRIORITY_HIGH 100
+
+struct connman_storage {
+ const char *name;
+ int priority;
+ enum connman_device_type device_type;
+ int (*device_load) (struct connman_device *device);
+ int (*device_save) (struct connman_device *device);
+};
+
+extern int connman_storage_register(struct connman_storage *storage);
+extern void connman_storage_unregister(struct connman_storage *storage);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_STORAGE_H */