X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fstubs.c;h=2a6035cf862382cc094056053ed989ac652ac6a9;hb=baa5a4099425803f01fa7eb2dce40c80c9c7611e;hp=dcdc51c008a7d29674508dd62307e01a05703c32;hpb=4211c7a258debd236017a19c70965bc1b3658edb;p=libguestfs.git diff --git a/daemon/stubs.c b/daemon/stubs.c index dcdc51c..2a6035c 100644 --- a/daemon/stubs.c +++ b/daemon/stubs.c @@ -2826,6 +2826,34 @@ done: xdr_free ((xdrproc_t) xdr_guestfs_sh_lines_args, (char *) &args); } +static void glob_expand_stub (XDR *xdr_in) +{ + char **r; + struct guestfs_glob_expand_args args; + char *pattern; + + memset (&args, 0, sizeof args); + + if (!xdr_guestfs_glob_expand_args (xdr_in, &args)) { + reply_with_error ("%s: daemon failed to decode procedure arguments", "glob_expand"); + return; + } + pattern = args.pattern; + + r = do_glob_expand (pattern); + if (r == NULL) + /* do_glob_expand has already called reply_with_error */ + goto done; + + struct guestfs_glob_expand_ret ret; + ret.paths.paths_len = count_strings (r); + ret.paths.paths_val = r; + reply ((xdrproc_t) &xdr_guestfs_glob_expand_ret, (char *) &ret); + free_strings (r); +done: + xdr_free ((xdrproc_t) xdr_guestfs_glob_expand_args, (char *) &args); +} + void dispatch_incoming_message (XDR *xdr_in) { switch (proc_nr) { @@ -3165,6 +3193,9 @@ void dispatch_incoming_message (XDR *xdr_in) case GUESTFS_PROC_SH_LINES: sh_lines_stub (xdr_in); break; + case GUESTFS_PROC_GLOB_EXPAND: + glob_expand_stub (xdr_in); + break; default: reply_with_error ("dispatch_incoming_message: unknown procedure number %d", proc_nr); }