From 8dd59fd33eed869fcb2597b3962b8d3cba9c5efa Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 7 Oct 2008 14:23:28 +0200 Subject: Include fake plugin for testing --- plugins/Makefile.am | 6 ++++++ plugins/fake.c | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 plugins/fake.c (limited to 'plugins') diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 7c12a8ef..a19236cc 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -46,6 +46,12 @@ policydir = $(datadir)/PolicyKit/policy policy_DATA = connman.policy endif +if FAKE +plugin_LTLIBRARIES += fake.la + +fake_la_SOURCES = fake.c +endif + AM_LDFLAGS = -no-undefined -module -avoid-version \ -export-symbols-regex connman_plugin_desc diff --git a/plugins/fake.c b/plugins/fake.c new file mode 100644 index 00000000..235751c0 --- /dev/null +++ b/plugins/fake.c @@ -0,0 +1,37 @@ +/* + * + * 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 +#endif + +#include + +static int fake_init(void) +{ + return 0; +} + +static void fake_exit(void) +{ +} + +CONNMAN_PLUGIN_DEFINE("fake", "Tesing plugin", VERSION, fake_init, fake_exit) -- cgit v1.2.3