summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-10-17 01:35:44 +0200
committerMarcel Holtmann <marcel@holtmann.org>2008-10-17 01:35:44 +0200
commit6b9edbbacdade5e0ccad762d6c848a9bef426114 (patch)
tree328593363d61f3ca7d1fb0996e95e11e9ed35d28 /include
parent37b8c8db24ea812b0f0e0351895a351260579549 (diff)
downloadconnman-6b9edbbacdade5e0ccad762d6c848a9bef426114.tar.gz
connman-6b9edbbacdade5e0ccad762d6c848a9bef426114.tar.bz2
connman-6b9edbbacdade5e0ccad762d6c848a9bef426114.zip
Preparation for network abstraction
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am2
-rw-r--r--include/network.h33
2 files changed, 34 insertions, 1 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index 74a8cb78..70978709 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -2,7 +2,7 @@
includedir = @includedir@/connman
include_HEADERS = log.h plugin.h security.h driver.h element.h property.h \
- device.h rtnl.h dbus.h
+ device.h network.h rtnl.h dbus.h
MAINTAINERCLEANFILES = Makefile.in
diff --git a/include/network.h b/include/network.h
new file mode 100644
index 00000000..da7b67f5
--- /dev/null
+++ b/include/network.h
@@ -0,0 +1,33 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2008 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
+ *
+ */
+
+#ifndef __CONNMAN_NETWORK_H
+#define __CONNMAN_NETWORK_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* __CONNMAN_NETWORK_H */