1 /* 2 * Copyright (C) 2022 Intel Corporation. 3 * SPDX-License-Identifier: BSD-3-Clause 4 */ 5 #ifndef _COMMAND_HANDLER_H_ 6 #define _COMMAND_HANDLER_H_ 7 8 extern struct socket_dev *sock_server; 9 10 int user_vm_destroy_handler(void *arg, void *command_para); 11 int user_vm_blkrescan_handler(void *arg, void *command_para); 12 int user_vm_register_vm_event_client_handler(void *arg, void *command_para); 13 14 #endif 15