Add skeleton for OSPM plugin
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 30 Jan 2009 14:45:06 +0000 (15:45 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 30 Jan 2009 14:45:06 +0000 (15:45 +0100)
bootstrap-configure
configure.ac
plugins/Makefile.am
plugins/ospm.c [new file with mode: 0644]

index 3264b32..90e6947 100755 (executable)
@@ -31,5 +31,6 @@ fi
                --enable-hso \
                --enable-ppp \
                --enable-udev \
+               --enable-ospm \
                --enable-polkit \
                --enable-client $*
index 846ddcb..eeaa3d7 100644 (file)
@@ -203,6 +203,10 @@ AC_SUBST(UDEV_CFLAGS)
 AC_SUBST(UDEV_LIBS)
 AM_CONDITIONAL(UDEV, test "${enable_udev}" = "yes")
 
+AC_ARG_ENABLE(ospm, AC_HELP_STRING([--enable-ospm],
+               [enable OSPM support]), [enable_ospm=${enableval}])
+AM_CONDITIONAL(OSPM, test "${enable_ospm}" = "yes")
+
 AC_ARG_ENABLE(polkit, AC_HELP_STRING([--enable-polkit],
                [enable PolicyKit support]), [enable_polkit=${enableval}])
 if (test "${enable_polkit}" = "yes"); then
index 0bda028..4c43ea5 100644 (file)
@@ -103,6 +103,13 @@ policy_DATA = connman.policy
 endif
 endif
 
+if OSPM
+plugin_LTLIBRARIES += ospm.la
+
+polkit_la_SOURCES = ospm.c
+polkit_la_CFLAGS = @GDBUS_CFLAGS@
+endif
+
 if FAKE
 plugin_LTLIBRARIES += fake.la
 
diff --git a/plugins/ospm.c b/plugins/ospm.c
new file mode 100644 (file)
index 0000000..87f18c6
--- /dev/null
@@ -0,0 +1,40 @@
+/*
+ *
+ *  Connection Manager
+ *
+ *  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
+ *  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
+
+#define CONNMAN_API_SUBJECT_TO_CHANGE
+#include <connman/plugin.h>
+#include <connman/log.h>
+
+static int ospm_init(void)
+{
+       return 0;
+}
+
+static void ospm_exit(void)
+{
+}
+
+CONNMAN_PLUGIN_DEFINE(ospm, "OSPM notification plugin", VERSION,
+                                                       ospm_init, ospm_exit)