diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-03-09 14:12:45 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-03-09 14:12:45 +0100 |
commit | dd0678d005a28c3936f04dcbafb481fc80f0bea8 (patch) | |
tree | a60f65a0edd48fa3ccc3ca6814b002003701f059 /plugins/iospm.c | |
parent | a31c992485e05a28d70c467c3d0a7f8763698ecc (diff) | |
download | connman-dd0678d005a28c3936f04dcbafb481fc80f0bea8.tar.gz connman-dd0678d005a28c3936f04dcbafb481fc80f0bea8.tar.bz2 connman-dd0678d005a28c3936f04dcbafb481fc80f0bea8.zip |
Rename OSPM plugin to Intel OSPM plugin
Diffstat (limited to 'plugins/iospm.c')
-rw-r--r-- | plugins/iospm.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/plugins/iospm.c b/plugins/iospm.c new file mode 100644 index 00000000..ead675e2 --- /dev/null +++ b/plugins/iospm.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 <config.h> +#endif + +#define CONNMAN_API_SUBJECT_TO_CHANGE +#include <connman/plugin.h> +#include <connman/log.h> + +static int iospm_init(void) +{ + return 0; +} + +static void iospm_exit(void) +{ +} + +CONNMAN_PLUGIN_DEFINE(ospm, "Intel OSPM notification plugin", VERSION, + CONNMAN_PLUGIN_PRIORITY_DEFAULT, iospm_init, iospm_exit) |