summaryrefslogtreecommitdiffstats
path: root/include/fastboot_net.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fastboot_net.h')
-rw-r--r--include/fastboot_net.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/fastboot_net.h b/include/fastboot_net.h
new file mode 100644
index 0000000000..e4b9d98091
--- /dev/null
+++ b/include/fastboot_net.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+#ifndef __FASTBOOT_NET__
+#define __FASTBOOT_NET__
+
+#include <fastboot.h>
+
+struct fastboot_net;
+
+struct fastboot_net *fastboot_net_init(struct fastboot_opts *opts);
+void fastboot_net_free(struct fastboot_net *fbn);
+
+#endif