Add functions for handling unique device identifiers
[connman] / src / error.c
index a78c799..f8f6fdc 100644 (file)
@@ -2,7 +2,7 @@
  *
  *  Connection Manager
  *
- *  Copyright (C) 2007-2008  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2007-2009  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
@@ -50,3 +50,15 @@ DBusMessage *__connman_error_not_supported(DBusMessage *msg)
        return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
                                                ".NotSupported", NULL);
 }
+
+DBusMessage *__connman_error_not_implemented(DBusMessage *msg)
+{
+       return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
+                                               ".NotImplemented", NULL);
+}
+
+DBusMessage *__connman_error_no_carrier(DBusMessage *msg)
+{
+       return g_dbus_create_error(msg, CONNMAN_ERROR_INTERFACE
+                                                       ".NoCarrier", NULL);
+}