Fix memory leak in __netconfig_netlink_scan_cb
[platform/core/connectivity/net-config.git] / include / neterror.h
index 0675233..b492797 100755 (executable)
@@ -25,25 +25,58 @@ extern "C" {
 #endif
 
 #include "glib.h"
+#include <gio/gio.h>
+#include <glib-object.h>
+
+#ifndef EXPORT_SYM
+#define EXPORT_SYM __attribute__((__visibility__("default")))
+#endif
 
 #define NETCONFIG_ERROR_QUARK (netconfig_error_quark())
 #define NETCONFIG_CONNMAN_AGENT_ERROR_QUARK (netconfig_connman_agent_error_quark())
 
-void netconfig_error_inprogress(GError **error);
-void netconfig_error_already_exists(GError **error);
-void netconfig_error_invalid_parameter(GError **error);
-void netconfig_error_permission_denied(GError **error);
-void netconfig_error_wifi_driver_failed(GError **error);
-void netconfig_error_security_restricted(GError **error);
-void netconfig_error_wifi_direct_failed(GError **error);
-void netconfig_error_fail_get_imsi(GError **error);
-void netconfig_error_fail_req_sim_auth(GError **error);
-void netconfig_error_fail_req_sim_auth_wrong_param(GError **error);
-void netconfig_error_fail_get_sim_auth_wrong_data(GError **error);
-void netconfig_error_fail_get_sim_auth_delay(GError **error);
-void netconfig_error_invalid_parameter(GError **error);
-void netconfig_error_permission_denied(GError **error);
-void netconfig_error_wifi_load_inprogress(GError **error);
+typedef enum {
+       NETCONFIG_NO_ERROR                              = 0x00,
+       NETCONFIG_ERROR_INTERNAL                = 0x01,
+       NETCONFIG_ERROR_NO_SERVICE              = 0x02,
+       NETCONFIG_ERROR_TRASPORT                = 0x03,
+       NETCONFIG_ERROR_NO_PROFILE              = 0x04,
+       NETCONFIG_ERROR_WRONG_PROFILE   = 0x05,
+       NETCONFIG_ERROR_INPROGRESS              = 0x06,
+       NETCONFIG_ERROR_ALREADYEXISTS   = 0x07,
+       NETCONFIG_ERROR_INVALID_PARAMETER               = 0x08,
+       NETCONFIG_ERROR_PERMISSION_DENIED               = 0x09,
+       NETCONFIG_ERROR_WIFI_DRIVER_FAILURE             = 0x0A,
+       NETCONFIG_ERROR_FAILED_GET_IMSI                 = 0x0B,
+       NETCONFIG_ERROR_FAILED_REQ_SIM_AUTH             = 0x0C,
+       NETCONFIG_ERROR_FAILED_REQ_SIM_AUTH_WRONG_PARAM         = 0x0D,
+       NETCONFIG_ERROR_FAILED_GET_SIM_AUTH_WRONG_DATA          = 0x0E,
+       NETCONFIG_ERROR_FAILED_GET_SIM_AUTH_DELAY                       = 0x0F,
+       NETCONFIG_ERROR_FAILED_REQ_AKA_AUTH                                     = 0x10,
+       NETCONFIG_ERROR_MAX                                                                     = 0x11,
+} netconfig_error_e;
+
+void netconfig_error_no_profile(GDBusMethodInvocation *context);
+void netconfig_error_inprogress(GDBusMethodInvocation *context);
+void netconfig_error_already_exists(GDBusMethodInvocation *context);
+void netconfig_error_invalid_parameter(GDBusMethodInvocation *context);
+void netconfig_error_permission_denied(GDBusMethodInvocation *context);
+void netconfig_error_wifi_driver_failed(GDBusMethodInvocation *context);
+void netconfig_error_wifi_direct_failed(GDBusMethodInvocation *context);
+void netconfig_error_fail_get_imsi(GDBusMethodInvocation *context);
+void netconfig_error_fail_req_sim_auth(GDBusMethodInvocation *context);
+void netconfig_error_fail_req_sim_auth_wrong_param(GDBusMethodInvocation *context);
+void netconfig_error_fail_get_sim_auth_wrong_data(GDBusMethodInvocation *context);
+void netconfig_error_fail_get_sim_auth_delay(GDBusMethodInvocation *context);
+void netconfig_error_fail_save_congifuration(GDBusMethodInvocation *context);
+void netconfig_error_fail_ethernet_cable_state(GDBusMethodInvocation *context);
+void netconfig_error_fail_preferred_ipv6_address(GDBusMethodInvocation *context);
+void netconfig_error_dbus_method_return(GDBusMethodInvocation *context, netconfig_error_e error, const gchar *message);
 
+void netconfig_error_init(void);
+
+#ifdef __cplusplus
+}
+#endif
 
 #endif /* __NETCONFIG_ERROR_H__ */