5 * Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
33 DBusMessage *__connman_error_failed(DBusMessage *msg, int errnum)
35 const char *str = strerror(errnum);
39 return __connman_error_not_registered(msg);
41 return __connman_error_not_found(msg);
43 return __connman_error_permission_denied(msg);
45 return __connman_error_already_exists(msg);
47 return __connman_error_invalid_arguments(msg);
49 return __connman_error_not_implemented(msg);
51 return __connman_error_no_carrier(msg);
53 return __connman_error_not_unique(msg);
55 return __connman_error_not_supported(msg);
57 return __connman_error_operation_aborted(msg);
59 return __connman_error_already_connected(msg);
61 return __connman_error_not_connected(msg);
63 return __connman_error_operation_timeout(msg);
65 return __connman_error_in_progress(msg);
67 return __connman_error_passphrase_required(msg);
70 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
71 ".Failed", "%s", str);
74 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg)
76 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
77 ".InvalidArguments", "Invalid arguments");
80 DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
82 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
83 ".PermissionDenied", "Permission denied");
86 DBusMessage *__connman_error_passphrase_required(DBusMessage *msg)
88 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
89 ".PassphraseRequired", "Passphrase required");
92 DBusMessage *__connman_error_not_registered(DBusMessage *msg)
94 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
95 ".NotRegistered", "Not registered");
98 DBusMessage *__connman_error_not_unique(DBusMessage *msg)
100 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
101 ".NotUnique", "Not unique");
104 DBusMessage *__connman_error_not_supported(DBusMessage *msg)
106 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
107 ".NotSupported", "Not supported");
110 DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
112 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
113 ".NotImplemented", "Not implemented");
116 DBusMessage *__connman_error_not_found(DBusMessage *msg)
118 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
119 ".NotFound", "Not found");
122 DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
124 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
125 ".NoCarrier", "No carrier");
128 DBusMessage *__connman_error_in_progress(DBusMessage *msg)
130 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
131 ".InProgress", "In progress");
134 DBusMessage *__connman_error_already_exists(DBusMessage *msg)
136 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
137 ".AlreadyExists", "Already exists");
140 DBusMessage *__connman_error_already_enabled(DBusMessage *msg)
142 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
143 ".AlreadyEnabled", "Already enabled");
146 DBusMessage *__connman_error_already_disabled(DBusMessage *msg)
148 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
149 ".AlreadyDisabled", "Already disabled");
152 DBusMessage *__connman_error_already_connected(DBusMessage *msg)
154 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
155 ".AlreadyConnected", "Already connected");
158 DBusMessage *__connman_error_not_connected(DBusMessage *msg)
160 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
161 ".NotConnected", "Not connected");
163 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg)
165 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
166 ".OperationAborted", "Operation aborted");
169 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg)
171 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
172 ".OperationTimeout", "Operation timeout");
175 DBusMessage *__connman_error_invalid_service(DBusMessage *msg)
177 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
178 ".InvalidService", "Invalid service");
181 DBusMessage *__connman_error_invalid_property(DBusMessage *msg)
183 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
184 ".InvalidProperty", "Invalid property");