iscsi-opts.c (a0def594286d9110a6035e02eef558cf3cf5d847) iscsi-opts.c (922a01a013d2270682a188258cbccacfecf8129c)
1/*
2 * QEMU Block driver for iSCSI images (static options)
3 *
4 * Copyright (c) 2017 Peter Lieven <pl@kamp.de>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "qemu/osdep.h"
26#include "qemu-common.h"
27#include "qemu/config-file.h"
1/*
2 * QEMU Block driver for iSCSI images (static options)
3 *
4 * Copyright (c) 2017 Peter Lieven <pl@kamp.de>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 11 unchanged lines hidden (view full) ---

20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25#include "qemu/osdep.h"
26#include "qemu-common.h"
27#include "qemu/config-file.h"
28#include "qemu/option.h"
28
29static QemuOptsList qemu_iscsi_opts = {
30 .name = "iscsi",
31 .head = QTAILQ_HEAD_INITIALIZER(qemu_iscsi_opts.head),
32 .desc = {
33 {
34 .name = "user",
35 .type = QEMU_OPT_STRING,

--- 34 unchanged lines hidden ---
29
30static QemuOptsList qemu_iscsi_opts = {
31 .name = "iscsi",
32 .head = QTAILQ_HEAD_INITIALIZER(qemu_iscsi_opts.head),
33 .desc = {
34 {
35 .name = "user",
36 .type = QEMU_OPT_STRING,

--- 34 unchanged lines hidden ---