Add skeleton for provider framework implementation
authorMarcel Holtmann <marcel@holtmann.org>
Tue, 4 Aug 2009 22:51:26 +0000 (15:51 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 4 Aug 2009 22:51:26 +0000 (15:51 -0700)
include/Makefile.am
include/provider.h [new file with mode: 0644]
src/Makefile.am
src/connman.h
src/provider.c [new file with mode: 0644]

index 6f2218c..0e82fa4 100644 (file)
@@ -8,7 +8,7 @@ nodist_include_HEADERS = version.h
 
 noinst_HEADERS = driver.h element.h property.h rtnl.h wifi.h \
                        dbus.h rfkill.h option.h resolver.h ipconfig.h \
-                                                       profile.h service.h
+                                       profile.h service.h provider.h
 
 MAINTAINERCLEANFILES = Makefile.in
 
diff --git a/include/provider.h b/include/provider.h
new file mode 100644 (file)
index 0000000..7e5d618
--- /dev/null
@@ -0,0 +1,39 @@
+/*
+ *
+ *  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
+ *
+ */
+
+#ifndef __CONNMAN_PROVIDER_H
+#define __CONNMAN_PROVIDER_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/**
+ * SECTION:provider
+ * @title: Provider premitives
+ * @short_description: Functions for handling providers
+ */
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_PROVIDER_H */
index d8b9e8d..ff0307b 100644 (file)
@@ -10,8 +10,8 @@ sbin_PROGRAMS = connmand
 connmand_SOURCES = main.c connman.h log.c selftest.c error.c plugin.c \
                        element.c device.c network.c connection.c \
                        manager.c profile.c service.c agent.c notifier.c \
-                       security.c resolver.c ipconfig.c rfkill.c \
-                       storage.c ipv4.c rtnl.c inet.c wifi.c dbus.c
+                       provider.c security.c resolver.c ipconfig.c ipv4.c \
+                       storage.c rfkill.c rtnl.c inet.c wifi.c dbus.c
 
 if UDEV
 connmand_SOURCES += udev.c
index 80134db..57b52de 100644 (file)
@@ -314,6 +314,8 @@ int __connman_service_disconnect(struct connman_service *service);
 int __connman_service_create_and_connect(DBusMessage *msg);
 void __connman_service_auto_connect(void);
 
+#include <connman/provider.h>
+
 #include <connman/notifier.h>
 
 int __connman_notifier_init(void);
diff --git a/src/provider.c b/src/provider.c
new file mode 100644 (file)
index 0000000..97a6592
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ *
+ *  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
+
+#include "connman.h"