From 8be7c88e4db7281e2660e0b04bc015e7ad696481 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Fri, 30 Jan 2009 15:45:06 +0100 Subject: Add skeleton for OSPM plugin --- plugins/Makefile.am | 7 +++++++ plugins/ospm.c | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 plugins/ospm.c (limited to 'plugins') diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 0bda0288..4c43ea5c 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -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 index 00000000..87f18c64 --- /dev/null +++ b/plugins/ospm.c @@ -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 +#endif + +#define CONNMAN_API_SUBJECT_TO_CHANGE +#include +#include + +static int ospm_init(void) +{ + return 0; +} + +static void ospm_exit(void) +{ +} + +CONNMAN_PLUGIN_DEFINE(ospm, "OSPM notification plugin", VERSION, + ospm_init, ospm_exit) -- cgit v1.2.3