Add skeleton for service interface details
authorMarcel Holtmann <marcel@holtmann.org>
Tue, 7 Apr 2009 22:35:31 +0000 (00:35 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Wed, 8 Apr 2009 04:02:47 +0000 (21:02 -0700)
src/Makefile.am
src/service.c [new file with mode: 0644]

index 897d573..e0ccdae 100644 (file)
@@ -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 (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"