5 * Copyright (C) 2007-2010 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_supported(msg);
55 return __connman_error_operation_aborted(msg);
57 return __connman_error_already_connected(msg);
59 return __connman_error_not_connected(msg);
61 return __connman_error_operation_timeout(msg);
63 return __connman_error_in_progress(msg);
65 return __connman_error_passphrase_required(msg);
68 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
72 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg)
74 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
75 ".InvalidArguments", "Invalid arguments");
78 DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
80 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
81 ".PermissionDenied", "Permission denied");
84 DBusMessage *__connman_error_passphrase_required(DBusMessage *msg)
86 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
87 ".PassphraseRequired", "Passphrase required");
90 DBusMessage *__connman_error_not_registered(DBusMessage *msg)
92 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
93 ".NotRegistered", "Not registered");
96 DBusMessage *__connman_error_not_supported(DBusMessage *msg)
98 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
99 ".NotSupported", "Not supported");
102 DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
104 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
105 ".NotImplemented", "Not implemented");
108 DBusMessage *__connman_error_not_found(DBusMessage *msg)
110 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
111 ".NotFound", "Not found");
114 DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
116 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
117 ".NoCarrier", "No carrier");
120 DBusMessage *__connman_error_in_progress(DBusMessage *msg)
122 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
123 ".InProgress", "In progress");
126 DBusMessage *__connman_error_already_exists(DBusMessage *msg)
128 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
129 ".AlreadyExists", "Already exists");
132 DBusMessage *__connman_error_already_enabled(DBusMessage *msg)
134 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
135 ".AlreadyEnabled", "Already enabled");
138 DBusMessage *__connman_error_already_disabled(DBusMessage *msg)
140 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
141 ".AlreadyDisabled", "Already disabled");
144 DBusMessage *__connman_error_already_connected(DBusMessage *msg)
146 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
147 ".AlreadyConnected", "Already connected");
150 DBusMessage *__connman_error_not_connected(DBusMessage *msg)
152 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
153 ".NotConnected", "Not connected");
155 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg)
157 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
158 ".OperationAborted", "Operation aborted");
161 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg)
163 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
164 ".OperationTimeout", "Operation timeout");
167 DBusMessage *__connman_error_invalid_service(DBusMessage *msg)
169 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
170 ".InvalidService", "Invalid service");
173 DBusMessage *__connman_error_invalid_property(DBusMessage *msg)
175 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE,
176 ".InvalidProperty", "Invalid property");