mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
These APIs were an experimental feature for passing through 9p filesystems from the host to the libguestfs appliance. It was never possible to use this without hacking the qemu command line of the appliance to add such drives by hand. It also didn't fit the libguestfs model very well. And 9p is generally deprecated in upstream qemu. Note that for ABI reasons these APIs are not actually removed, they have been changed so that they always return an error. These APIs were actually hard-removed from all versions of RHEL. See-also: https://bugzilla.redhat.com/921710
38 lines
1.2 KiB
C
38 lines
1.2 KiB
C
/* libguestfs - the guestfsd daemon
|
|
* Copyright (C) 2011 Red Hat Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "daemon.h"
|
|
#include "actions.h"
|
|
|
|
char **
|
|
do_list_9p (void)
|
|
{
|
|
reply_with_perror ("9p support was removed in libguestfs 1.48");
|
|
return NULL;
|
|
}
|
|
|
|
/* Takes optional arguments, consult optargs_bitmask. */
|
|
int
|
|
do_mount_9p (const char *mount_tag, const char *mountpoint, const char *options)
|
|
{
|
|
reply_with_perror ("9p support was removed in libguestfs 1.48");
|
|
return -1;
|
|
}
|