summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-12-27 09:05:02 +0100
committerMarcel Holtmann <marcel@holtmann.org>2008-12-27 09:05:02 +0100
commitd3327fdbc45b8c5509e5a680dca367c945e9bd47 (patch)
tree639161ac8d3cba53ebf45ef1e5296326b30a4d34
parent21a89f85e212d694db038a201aebbcccb90a3c5b (diff)
downloadconnman-d3327fdbc45b8c5509e5a680dca367c945e9bd47.tar.gz
connman-d3327fdbc45b8c5509e5a680dca367c945e9bd47.tar.bz2
connman-d3327fdbc45b8c5509e5a680dca367c945e9bd47.zip
Add skeleton for Option HSO driver
-rw-r--r--plugins/Makefile.am4
-rw-r--r--plugins/hso.c60
2 files changed, 63 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 19515e2a..09ca6f7f 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -2,7 +2,7 @@
plugindir = $(libdir)/connman/plugins
plugin_LTLIBRARIES = loopback.la netdev.la ethernet.la wifi.la \
- bluetooth.la udhcp.la dhclient.la ipv4.la \
+ bluetooth.la hso.la udhcp.la dhclient.la ipv4.la \
dnsproxy.la resolvconf.la resolvfile.la
loopback_la_SOURCES = loopback.c
@@ -17,6 +17,8 @@ wifi_la_LIBADD = @GDBUS_LIBS@
bluetooth_la_SOURCES = bluetooth.c
bluetooth_la_LIBADD = @GDBUS_LIBS@
+hso_la_SOURCES = hso.c
+
udhcp_la_SOURCES = udhcp.c
udhcp_la_CFLAGS = @GLIB_CFLAGS@ -DUDHCPC=\"@UDHCPC@\"
diff --git a/plugins/hso.c b/plugins/hso.c
new file mode 100644
index 00000000..f42900f1
--- /dev/null
+++ b/plugins/hso.c
@@ -0,0 +1,60 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2008 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
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <connman/plugin.h>
+#include <connman/device.h>
+#include <connman/log.h>
+
+static int hso_probe(struct connman_device *device)
+{
+ DBG("device %p", device);
+
+ return 0;
+}
+
+static void hso_remove(struct connman_device *device)
+{
+ DBG("device %p", device);
+}
+
+static struct connman_device_driver hso_driver = {
+ .name = "hso",
+ .type = CONNMAN_DEVICE_TYPE_HSO,
+ .probe = hso_probe,
+ .remove = hso_remove,
+};
+
+static int hso_init(void)
+{
+ return connman_device_driver_register(&hso_driver);
+}
+
+static void hso_exit(void)
+{
+ connman_device_driver_unregister(&hso_driver);
+}
+
+CONNMAN_PLUGIN_DEFINE(hso, "Option HSO device plugin", VERSION,
+ hso_init, hso_exit)