blob: d4382c0a0e03b3832d482841ae5d2c358af18803 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: BSD-2-Clause
*
* Copyright (C) 2016 The Android Open Source Project
*/
#ifndef __NET_FASTBOOT_H__
#define __NET_FASTBOOT_H__
/**
* Wait for incoming UDP fastboot comands.
*/
void fastboot_udp_start_server(void);
#endif /* __NET_FASTBOOT_H__ */
|