diff options
Diffstat (limited to 'daemon/stubs.c')
-rw-r--r-- | daemon/stubs.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/daemon/stubs.c b/daemon/stubs.c index 0e6af849..2a296446 100644 --- a/daemon/stubs.c +++ b/daemon/stubs.c @@ -2743,6 +2743,34 @@ done: xdr_free ((xdrproc_t) xdr_guestfs_sleep_args, (char *) &args); } +static void ntfs_3g_probe_stub (XDR *xdr_in) +{ + int r; + struct guestfs_ntfs_3g_probe_args args; + int rw; + const char *device; + + memset (&args, 0, sizeof args); + + if (!xdr_guestfs_ntfs_3g_probe_args (xdr_in, &args)) { + reply_with_error ("%s: daemon failed to decode procedure arguments", "ntfs_3g_probe"); + return; + } + rw = args.rw; + device = args.device; + + r = do_ntfs_3g_probe (rw, device); + if (r == -1) + /* do_ntfs_3g_probe has already called reply_with_error */ + goto done; + + struct guestfs_ntfs_3g_probe_ret ret; + ret.status = r; + reply ((xdrproc_t) &xdr_guestfs_ntfs_3g_probe_ret, (char *) &ret); +done: + xdr_free ((xdrproc_t) xdr_guestfs_ntfs_3g_probe_args, (char *) &args); +} + void dispatch_incoming_message (XDR *xdr_in) { switch (proc_nr) { @@ -3073,6 +3101,9 @@ void dispatch_incoming_message (XDR *xdr_in) case GUESTFS_PROC_SLEEP: sleep_stub (xdr_in); break; + case GUESTFS_PROC_NTFS_3G_PROBE: + ntfs_3g_probe_stub (xdr_in); + break; default: reply_with_error ("dispatch_incoming_message: unknown procedure number %d", proc_nr); } |