diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-15 06:57:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:50 -0500 |
commit | 187412f3da4fbc6feeca15bd0c2527534255964e (patch) | |
tree | bd09f3cab5515bd89233a509d2a42238894f24eb /source4/librpc/idl | |
parent | 4719461a07a5494f01b4295e6f9e0479ea8e96a0 (diff) | |
download | samba-187412f3da4fbc6feeca15bd0c2527534255964e.tar.gz samba-187412f3da4fbc6feeca15bd0c2527534255964e.tar.bz2 samba-187412f3da4fbc6feeca15bd0c2527534255964e.zip |
r3747: - added some of the infrastructure needed for streams support in pvfs
(the IDL, and the load/save meta-data logic)
- changed pvfs_resolve_name() to default to non-wildcard, needing
PVFS_RESOLVE_WILDCARD to enable wildcards. Most callers don't want
wildcards, so defaulting this way makes more sense.
- fixed deletion of EAs
(This used to be commit e7afd4403cc1b7e0928776929f8988aa6f15640b)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/xattr.idl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/source4/librpc/idl/xattr.idl b/source4/librpc/idl/xattr.idl index 0fc965c825..be587ffb88 100644 --- a/source4/librpc/idl/xattr.idl +++ b/source4/librpc/idl/xattr.idl @@ -47,4 +47,23 @@ interface xattr uint16 num_eas; [size_is(num_eas)] xattr_EA *eas; } xattr_DosEAs; + + /* we store stream information in this xattr structure. Then + the streams themselves are stored in + user.DosStream.STREAMNAME or in external files, according + to the flags */ + const string XATTR_DOSSTREAMS_NAME = "user.DosStreams"; + + const int XATTR_STREAM_FLAG_INTERNAL = 0x00000001; + + typedef struct { + utf8string name; + uint64 size; + uint32 flags; + } xattr_DosStream; + + typedef [public] struct { + uint32 num_streams; + [size_is(num_streams)] xattr_DosStream *streams; + } xattr_DosStreams; } |