1 /* 2 * Copyright (C) 2016 The Android Open Source Project 3 * 4 * SPDX-License-Identifier: BSD-2-Clause 5 */ 6 7 #ifndef __NET_FASTBOOT_H__ 8 #define __NET_FASTBOOT_H__ 9 10 /**********************************************************************/ 11 /* 12 * Global functions and variables. 13 */ 14 15 /** 16 * Wait for incoming fastboot comands. 17 */ 18 void fastboot_start_server(void); 19 /** 20 * Send an INFO packet during long commands 21 * 22 * @param msg: String describing the reason for waiting 23 */ 24 void fastboot_send_info(const char*); 25 26 /**********************************************************************/ 27 28 #endif /* __NET_FASTBOOT_H__ */ 29