OLD | NEW |
1 /* | 1 /* |
2 * | 2 * |
3 * Connection Manager | 3 * Connection Manager |
4 * | 4 * |
5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved. | 5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved. |
6 * | 6 * |
7 * This program is free software; you can redistribute it and/or modify | 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 | 8 * it under the terms of the GNU General Public License version 2 as |
9 * published by the Free Software Foundation. | 9 * published by the Free Software Foundation. |
10 * | 10 * |
11 * This program is distributed in the hope that it will be useful, | 11 * This program is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 * GNU General Public License for more details. | 14 * GNU General Public License for more details. |
15 * | 15 * |
16 * You should have received a copy of the GNU General Public License | 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 | 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 | 18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
19 * | 19 * |
20 */ | 20 */ |
21 | 21 |
22 #ifdef HAVE_CONFIG_H | 22 #ifdef HAVE_CONFIG_H |
23 #include <config.h> | 23 #include <config.h> |
24 #endif | 24 #endif |
25 | 25 |
| 26 #include <ctype.h> |
26 #include <errno.h> | 27 #include <errno.h> |
27 | |
28 #include <gdbus.h> | 28 #include <gdbus.h> |
29 #include <stdio.h> | 29 #include <stdio.h> |
30 #include <stdlib.h> | 30 #include <stdlib.h> |
31 #include <string.h> | 31 #include <string.h> |
32 | 32 |
33 #define CONNMAN_API_SUBJECT_TO_CHANGE | 33 #define CONNMAN_API_SUBJECT_TO_CHANGE |
34 #include <connman/element.h> | 34 #include <connman/element.h> |
35 #include <connman/dbus.h> | 35 #include <connman/dbus.h> |
36 #include <connman/device.h> | 36 #include <connman/device.h> |
37 #include <connman/network.h> | 37 #include <connman/network.h> |
(...skipping 3693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3731 connection = NULL; | 3731 connection = NULL; |
3732 | 3732 |
3733 connman_device_driver_unregister(&modem_driver); | 3733 connman_device_driver_unregister(&modem_driver); |
3734 connman_network_driver_unregister(&network_driver); | 3734 connman_network_driver_unregister(&network_driver); |
3735 } | 3735 } |
3736 | 3736 |
3737 | 3737 |
3738 CONNMAN_PLUGIN_DEFINE(modemmgr, "Modem Manager plugin", VERSION, | 3738 CONNMAN_PLUGIN_DEFINE(modemmgr, "Modem Manager plugin", VERSION, |
3739 CONNMAN_PLUGIN_PRIORITY_DEFAULT, | 3739 CONNMAN_PLUGIN_PRIORITY_DEFAULT, |
3740 modemmgr_init, modemmgr_exit) | 3740 modemmgr_init, modemmgr_exit) |
OLD | NEW |