1/* AUTOMATICALLY GENERATED, DO NOT MODIFY */
2/*
3 * QEMU Block Module Infrastructure
4 *
5 * Authors:
6 * Marc Mari <markmb@redhat.com>
7 */
8
9#ifndef QEMU_MODULE_BLOCK_H
10#define QEMU_MODULE_BLOCK_H
11
12static const struct {
13 const char *format_name;
14 const char *protocol_name;
15 const char *library_name;
16} block_driver_modules[] = {
17 {
18 .library_name = "curl",
19 .format_name = "http",
20 .protocol_name = "http",
21 },
22 {
23 .library_name = "curl",
24 .format_name = "https",
25 .protocol_name = "https",
26 },
27 {
28 .library_name = "curl",
29 .format_name = "ftp",
30 .protocol_name = "ftp",
31 },
32 {
33 .library_name = "curl",
34 .format_name = "ftps",
35 .protocol_name = "ftps",
36 },
37};
38
39#endif
40