5 * Copyright (C) 2007-2009 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_found(msg);
41 return __connman_error_permission_denied(msg);
43 return __connman_error_already_exists(msg);
45 return __connman_error_invalid_arguments(msg);
47 return __connman_error_not_implemented(msg);
49 return __connman_error_no_carrier(msg);
51 return __connman_error_not_supported(msg);
53 return __connman_error_operation_aborted(msg);
55 return __connman_error_already_connected(msg);
57 return __connman_error_not_connected(msg);
59 return __connman_error_operation_timeout(msg);
61 return __connman_error_in_progress(msg);
63 return __connman_error_passphrase_required(msg);
66 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
70 DBusMessage *__connman_error_invalid_arguments(DBusMessage *msg)
72 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
73 ".InvalidArguments", "Invalid arguments");
76 DBusMessage *__connman_error_permission_denied(DBusMessage *msg)
78 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
79 ".PermissionDenied", "Permission denied");
82 DBusMessage *__connman_error_passphrase_required(DBusMessage *msg)
84 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
85 ".PassphraseRequired", "Passphrase required");
88 DBusMessage *__connman_error_not_supported(DBusMessage *msg)
90 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
91 ".NotSupported", "Not supported");
94 DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
96 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
97 ".NotImplemented", "Not implemented");
100 DBusMessage *__connman_error_not_found(DBusMessage *msg)
102 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
103 ".NotFound", "Not found");
106 DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
108 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
109 ".NoCarrier", "No carrier");
112 DBusMessage *__connman_error_in_progress(DBusMessage *msg)
114 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
115 ".InProgress", "In progress");
118 DBusMessage *__connman_error_already_exists(DBusMessage *msg)
120 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
121 ".AlreadyExists", "Already exists");
124 DBusMessage *__connman_error_already_enabled(DBusMessage *msg)
126 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
127 ".AlreadyEnabled", "Already enabled");
130 DBusMessage *__connman_error_already_disabled(DBusMessage *msg)
132 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
133 ".AlreadyDisabled", "Already disabled");
136 DBusMessage *__connman_error_already_connected(DBusMessage *msg)
138 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
139 ".AlreadyConnected", "Already connected");
142 DBusMessage *__connman_error_not_connected(DBusMessage *msg)
144 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
145 ".NotConnected", "Not connected");
147 DBusMessage *__connman_error_operation_aborted(DBusMessage *msg)
149 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
150 ".OperationAborted", "Operation aborted");
153 DBusMessage *__connman_error_operation_timeout(DBusMessage *msg)
155 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
156 ".OperationTimeout", "Operation timeout");
159 DBusMessage *__connman_error_invalid_service(DBusMessage *msg)
161 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
162 ".InvalidService", "Invalid service");
165 DBusMessage *__connman_error_invalid_property(DBusMessage *msg)
167 return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE,
168 ".InvalidProperty", "Invalid property");