dundee: add timeout to close stalled ppp handshake
[platform/upstream/ofono.git] / dundee / dbus.c
1 /*
2  *
3  *  oFono - Open Source Telephony
4  *
5  *  Copyright (C) 2012  BMW Car IT GmbH. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <glib.h>
27 #include <gdbus.h>
28
29 #include "dundee.h"
30
31 #define DUNDEE_ERROR_INTERFACE "org.ofono.dundee.Error"
32
33 DBusMessage *__dundee_error_invalid_args(DBusMessage *msg)
34 {
35         return g_dbus_create_error(msg, DUNDEE_ERROR_INTERFACE
36                                         ".InvalidArguments",
37                                         "Invalid arguments in method call");
38 }
39
40 DBusMessage *__dundee_error_failed(DBusMessage *msg)
41 {
42         return g_dbus_create_error(msg, DUNDEE_ERROR_INTERFACE
43                                         ".Failed",
44                                         "Operation failed");
45 }
46
47 DBusMessage *__dundee_error_timed_out(DBusMessage *msg)
48 {
49         return g_dbus_create_error(msg, DUNDEE_ERROR_INTERFACE ".Timedout",
50                         "Operation failure due to timeout");
51 }