diff options
author | Jeremy Allison <jra@samba.org> | 2004-03-27 02:13:58 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2004-03-27 02:13:58 +0000 |
commit | 651d5b4683f4c97608a5f19c9996f85ae6b21fc6 (patch) | |
tree | abb862887254b7fec47ed0530fff869170f2b862 /source3/include | |
parent | 8d6aee954a62575e71f8c0d97429e09eaec4c132 (diff) | |
download | samba-651d5b4683f4c97608a5f19c9996f85ae6b21fc6.tar.gz samba-651d5b4683f4c97608a5f19c9996f85ae6b21fc6.tar.bz2 samba-651d5b4683f4c97608a5f19c9996f85ae6b21fc6.zip |
Working (tested) client code for setting EA's by filename and fnum.
Now for parsing out the retrieved EA's.
Jeremy.
(This used to be commit 5eeeee302cec2cc1f6c130ed44be9df028f73cde)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 6c2f74e3b9..add57ddcf4 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1659,4 +1659,10 @@ typedef struct smb_sign_info { BOOL mandatory_signing; } smb_sign_info; +struct ea_struct { + uint8 flags; + char *name; + DATA_BLOB value; +}; + #endif /* _SMB_H */ |