ssh.c (766181fe5789da07ff1fe76986e63f91ccdc2c65) ssh.c (c282e1fdf7ec9659c7f320123be397477a359d01)
1/*
2 * Secure Shell (ssh) backend for QEMU.
3 *
4 * Copyright (C) 2013 Red Hat Inc., Richard W.M. Jones <rjones@redhat.com>
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

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

1070}
1071
1072static BlockDriver bdrv_ssh = {
1073 .format_name = "ssh",
1074 .protocol_name = "ssh",
1075 .instance_size = sizeof(BDRVSSHState),
1076 .bdrv_parse_filename = ssh_parse_filename,
1077 .bdrv_file_open = ssh_file_open,
1/*
2 * Secure Shell (ssh) backend for QEMU.
3 *
4 * Copyright (C) 2013 Red Hat Inc., Richard W.M. Jones <rjones@redhat.com>
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

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

1070}
1071
1072static BlockDriver bdrv_ssh = {
1073 .format_name = "ssh",
1074 .protocol_name = "ssh",
1075 .instance_size = sizeof(BDRVSSHState),
1076 .bdrv_parse_filename = ssh_parse_filename,
1077 .bdrv_file_open = ssh_file_open,
1078 .bdrv_create2 = ssh_create,
1078 .bdrv_create = ssh_create,
1079 .bdrv_close = ssh_close,
1080 .bdrv_has_zero_init = ssh_has_zero_init,
1081 .bdrv_co_readv = ssh_co_readv,
1082 .bdrv_co_writev = ssh_co_writev,
1083 .bdrv_getlength = ssh_getlength,
1084 .bdrv_co_flush_to_disk = ssh_co_flush,
1085 .create_opts = &ssh_create_opts,
1086};

--- 15 unchanged lines hidden ---
1079 .bdrv_close = ssh_close,
1080 .bdrv_has_zero_init = ssh_has_zero_init,
1081 .bdrv_co_readv = ssh_co_readv,
1082 .bdrv_co_writev = ssh_co_writev,
1083 .bdrv_getlength = ssh_getlength,
1084 .bdrv_co_flush_to_disk = ssh_co_flush,
1085 .create_opts = &ssh_create_opts,
1086};

--- 15 unchanged lines hidden ---