summaryrefslogtreecommitdiffstats
path: root/include/fastboot_net.h
blob: e4b9d98091e3d4438345c2f820d572abddfbaf4d (plain)
1
2
3
4
5
6
7
8
9
10
11
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