From: Marcel Holtmann Date: Fri, 4 Apr 2008 06:59:37 +0000 (+0200) Subject: Add skeleton for network functions X-Git-Tag: 0.1~349 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=52ecd928d7c84ad694f1c977c981ab01784d228e;p=platform%2Fupstream%2Fconnman.git Add skeleton for network functions --- diff --git a/src/Makefile.am b/src/Makefile.am index 83eb87f..1637b24 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,8 +12,8 @@ DISTCLEANFILES = $(service_DATA) sbin_PROGRAMS = connmand connmand_SOURCES = main.c connman.h log.c manager.c agent.c plugin.c \ - iface.c iface-storage.c iface-helper.c \ - iface-inet.c rtnl.c dhcp.c resolver.c + iface.c iface-storage.c iface-helper.c iface-inet.c \ + network.c rtnl.c dhcp.c resolver.c connmand_LDADD = @HAL_LIBS@ @GDBUS_LIBS@ @GMODULE_LIBS@ diff --git a/src/network.c b/src/network.c new file mode 100644 index 0000000..641bff0 --- /dev/null +++ b/src/network.c @@ -0,0 +1,26 @@ +/* + * + * Connection Manager + * + * Copyright (C) 2007 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"