Add skeleton for network functions
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 4 Apr 2008 06:59:37 +0000 (08:59 +0200)
committerMarcel Holtmann <marcel@holtmann.org>
Fri, 4 Apr 2008 06:59:37 +0000 (08:59 +0200)
src/Makefile.am
src/network.c [new file with mode: 0644]

index 83eb87f..1637b24 100644 (file)
@@ -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 (file)
index 0000000..641bff0
--- /dev/null
@@ -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 <config.h>
+#endif
+
+#include "connman.h"