From 4717a5b5f1d98b0ab28c2c8b2284d4e02a025729 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 8 Apr 2009 00:35:31 +0200 Subject: [PATCH] Add skeleton for service interface details --- src/Makefile.am | 7 ++++--- src/service.c | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 src/service.c diff --git a/src/Makefile.am b/src/Makefile.am index 897d573..e0ccdae 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 0000000..97a6592 --- /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 +#endif + +#include "connman.h" -- 1.7.9.5