ipconfig: Added function to enable IPv6.
[framework/connectivity/connman.git] / include / storage.h
index 9182675..6b733f8 100644 (file)
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2007-2009  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2007-2010  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
@@ -22,8 +22,9 @@
 #ifndef __CONNMAN_STORAGE_H
 #define __CONNMAN_STORAGE_H
 
+#include <connman/profile.h>
+#include <connman/service.h>
 #include <connman/device.h>
-#include <connman/network.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -42,16 +43,19 @@ extern "C" {
 struct connman_storage {
        const char *name;
        int priority;
+       int (*profile_init) (void);
+       int (*profile_load) (struct connman_profile *profile);
+       int (*profile_save) (struct connman_profile *profile);
+       enum connman_service_type service_type;
+       int (*service_load) (struct connman_service *service);
+       int (*service_save) (struct connman_service *service);
        enum connman_device_type device_type;
        int (*device_load) (struct connman_device *device);
        int (*device_save) (struct connman_device *device);
-       enum connman_network_type network_type;
-       int (*network_load) (struct connman_network *network);
-       int (*network_save) (struct connman_network *network);
 };
 
-extern int connman_storage_register(struct connman_storage *storage);
-extern void connman_storage_unregister(struct connman_storage *storage);
+int connman_storage_register(struct connman_storage *storage);
+void connman_storage_unregister(struct connman_storage *storage);
 
 #ifdef __cplusplus
 }