summaryrefslogtreecommitdiff
path: root/src/firewall.c
diff options
context:
space:
mode:
authorDaniel Wagner <daniel.wagner@bmw-carit.de>2013-03-19 13:46:30 +0100
committerPatrik Flykt <patrik.flykt@linux.intel.com>2013-03-25 13:17:58 +0200
commit9695eff6941c93668e680f92e52ed287d2dac64c (patch)
tree7192007b1d7a4c27a8dfe80d3287659d7ebeed71 /src/firewall.c
parent6caa1417f6c8b2e1460915f2372f333c4b218ac7 (diff)
downloadconnman-9695eff6941c93668e680f92e52ed287d2dac64c.tar.gz
connman-9695eff6941c93668e680f92e52ed287d2dac64c.tar.bz2
connman-9695eff6941c93668e680f92e52ed287d2dac64c.zip
firewall: Add firewall file
Diffstat (limited to 'src/firewall.c')
-rw-r--r--src/firewall.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/firewall.c b/src/firewall.c
new file mode 100644
index 00000000..e8b7e207
--- /dev/null
+++ b/src/firewall.c
@@ -0,0 +1,38 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2013 BMW Car IT GmbH.
+ *
+ * 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"
+
+int __connman_firewall_init(void)
+{
+ DBG("");
+
+ return 0;
+}
+
+void __connman_firewall_cleanup(void)
+{
+ DBG("");
+}