1 /* SPDX-License-Identifier: BSD-2-Clause
2  *
3  * Copyright (C) 2023 The Android Open Source Project
4  */
5 
6 #ifndef __NET_FASTBOOT_TCP_H__
7 #define __NET_FASTBOOT_TCP_H__
8 
9 /**
10  * Wait for incoming tcp fastboot comands.
11  */
12 void fastboot_tcp_start_server(void);
13 
14 #endif /* __NET_FASTBOOT_TCP_H__ */
15