From 6952505694bfd8dda20e4e18b5f8b76b97db82a4 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 17 Aug 2012 14:21:34 +0100 Subject: guestfs_readdir: Note that this suffers from protocol limits. --- TODO | 2 ++ generator/generator_actions.ml | 1 + 2 files changed, 3 insertions(+) diff --git a/TODO b/TODO index 92621e5c..88cf0911 100644 --- a/TODO +++ b/TODO @@ -564,3 +564,5 @@ These would be changed from daemon_functions to non_daemon_functions, with the non-daemon versions implemented using guestfs_upload and guestfs_download (and others). This change should be transparent from the p.o.v of the API and ABI. + + - guestfs_readdir diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml index 66eb54f6..e7cfb6da 100644 --- a/generator/generator_actions.ml +++ b/generator/generator_actions.ml @@ -5083,6 +5083,7 @@ This call returns the previous umask." }; name = "readdir"; style = RStructList ("entries", "dirent"), [Pathname "dir"], []; proc_nr = Some 138; + protocol_limit_warning = true; shortdesc = "read directories entries"; longdesc = "\ This returns the list of directory entries in directory C. -- cgit