1 /* 2 * Sharing QEMU block devices via vhost-user protocal 3 * 4 * Copyright (c) Coiby Xu <coiby.xu@gmail.com>. 5 * Copyright (c) 2020 Red Hat, Inc. 6 * 7 * This work is licensed under the terms of the GNU GPL, version 2 or 8 * later. See the COPYING file in the top-level directory. 9 */ 10 11 #ifndef VHOST_USER_BLK_SERVER_H 12 #define VHOST_USER_BLK_SERVER_H 13 14 #include "block/export.h" 15 16 /* For block/export/export.c */ 17 extern const BlockExportDriver blk_exp_vhost_user_blk; 18 19 #endif /* VHOST_USER_BLK_SERVER_H */ 20