summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2009-04-08 00:35:31 +0200
committerMarcel Holtmann <marcel@holtmann.org>2009-04-07 21:02:47 -0700
commit4717a5b5f1d98b0ab28c2c8b2284d4e02a025729 (patch)
tree229451d0ef522fad205574e96f7a1b420148476d
parentc9853debe7ca68ce1a2973259790a53128aed58e (diff)
downloadconnman-4717a5b5f1d98b0ab28c2c8b2284d4e02a025729.tar.gz
connman-4717a5b5f1d98b0ab28c2c8b2284d4e02a025729.tar.bz2
connman-4717a5b5f1d98b0ab28c2c8b2284d4e02a025729.zip
Add skeleton for service interface details
-rw-r--r--src/Makefile.am7
-rw-r--r--src/service.c26
2 files changed, 30 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 897d5738..e0ccdae1 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -8,9 +8,10 @@ endif
sbin_PROGRAMS = connmand
connmand_SOURCES = main.c connman.h log.c selftest.c error.c plugin.c \
- profile.c element.c device.c network.c connection.c \
- security.c resolver.c notifier.c storage.c manager.c \
- agent.c ipv4.c detect.c rtnl.c dbus.c
+ element.c device.c network.c connection.c \
+ manager.c profile.c service.c agent.c \
+ security.c resolver.c notifier.c storage.c \
+ ipv4.c detect.c rtnl.c dbus.c
if UDEV
connmand_SOURCES += udev.c
diff --git a/src/service.c b/src/service.c
new file mode 100644
index 00000000..97a6592a
--- /dev/null
+++ b/src/service.c
@@ -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"