search for: tsk_file_type_num

Displaying 4 results from an estimated 4 matches for "tsk_file_type_num".

2016 Apr 03
0
[PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...lude <rpc/xdr.h> +#include <rpc/types.h> + +#include "guestfs_protocol.h" +#include "daemon.h" +#include "actions.h" +#include "optgroups.h" + +#ifdef HAVE_LIBTSK + +#include <tsk/libtsk.h> + +/* File types map similar to dirent. */ +#define TSK_FILE_TYPE_NUM 10 +char TSK_FILE_TYPE[TSK_FILE_TYPE_NUM] = { + 'u', 'f', 'c', 'd', 'b', 'r', 'l', 's', 'h', 'w' +}; + +static int open_filesystem (const char *device, + TSK_IMG_INFO **img, TSK_FS_INFO **fs)...
2016 Apr 04
2
Re: [PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...> +#include "guestfs_protocol.h" > +#include "daemon.h" > +#include "actions.h" > +#include "optgroups.h" > + > +#ifdef HAVE_LIBTSK > + > +#include <tsk/libtsk.h> > + > +/* File types map similar to dirent. */ > +#define TSK_FILE_TYPE_NUM 10 > +char TSK_FILE_TYPE[TSK_FILE_TYPE_NUM] = { > + 'u', 'f', 'c', 'd', 'b', 'r', 'l', 's', 'h', 'w' > +}; I see the libtsk already uses TSK_* and tsk_* prefixes for its own stuff, so I'd avoid using the...
2016 Apr 04
0
Re: [PATCH v2 3/5] daemon: Added internal_filesystem_walk command
...> +#include "daemon.h" > > +#include "actions.h" > > +#include "optgroups.h" > > + > > +#ifdef HAVE_LIBTSK > > + > > +#include <tsk/libtsk.h> > > + > > +/* File types map similar to dirent. */ > > +#define TSK_FILE_TYPE_NUM 10 > > +char TSK_FILE_TYPE[TSK_FILE_TYPE_NUM] = { > > + 'u', 'f', 'c', 'd', 'b', 'r', 'l', 's', 'h', 'w' > > +}; > > I see the libtsk already uses TSK_* and tsk_* prefixes for its own > stuff...
2016 Apr 03
7
[PATCH v2 0/5] Added filesystem_walk command
v2: - Increased the amount of collected information from the FS content. - Moved filesystem_walk0 as internal command. - Code improvement based on comments. - Adhere to project's coding style. - Better command documentation. - More robust tests. Patch ready for review, code available at: https://github.com/noxdafox/libguestfs/tree/filesystem_walk Matteo Cafasso (5): generator: