summaryrefslogtreecommitdiff
path: root/network.h
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2016-02-16 09:41:01 +0100
committerAlexander Larsson <alexl@redhat.com>2016-02-16 09:41:01 +0100
commit5556d20fd5be5c4fdfd9da77b0c44b3ac31eef13 (patch)
treed5aba52cececd6f05e8408eb61120e1c33aff472 /network.h
parent2f58265dce958579a321c61818de365c7bc7251c (diff)
downloadbubblewrap-5556d20fd5be5c4fdfd9da77b0c44b3ac31eef13.tar.gz
Split out network functions to separate file
Diffstat (limited to 'network.h')
-rw-r--r--network.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/network.h b/network.h
new file mode 100644
index 0000000..cf06779
--- /dev/null
+++ b/network.h
@@ -0,0 +1,24 @@
+/* build-root
+ * Copyright (C) 2016 Alexander Larsson
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef __NETWORK_H__
+#define __NETWORK_H__
+
+int loopback_setup (void);
+
+#endif /* __NETWORK_H__ */