diff options
author | Rafal Szczesniak <mimir@samba.org> | 2005-07-21 22:32:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:29:54 -0500 |
commit | 6868795a3905d390f3c33aea1aa55dd2937d5f13 (patch) | |
tree | efa95115ca6f9500c390b9df764a48f38e430ace /source4/libnet/composite.h | |
parent | c84512f0e1c1dd6ac0cb3e9b5e2fbb2f3c0d4eb1 (diff) | |
download | samba-6868795a3905d390f3c33aea1aa55dd2937d5f13.tar.gz samba-6868795a3905d390f3c33aea1aa55dd2937d5f13.tar.xz samba-6868795a3905d390f3c33aea1aa55dd2937d5f13.zip |
r8692: Starting parts of code to provide user modify functionality.
It's more like a placeholder now, than a working code. Just don't
want to hang it around my laptop only.
rafal
(This used to be commit bee1c9ec2dea4cad703386af35470c7d74cef4b0)
Diffstat (limited to 'source4/libnet/composite.h')
-rw-r--r-- | source4/libnet/composite.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source4/libnet/composite.h b/source4/libnet/composite.h index a5608a259e5..62ad46ee811 100644 --- a/source4/libnet/composite.h +++ b/source4/libnet/composite.h @@ -59,6 +59,21 @@ struct libnet_rpc_userdel { }; +struct libnet_rpc_usermod { + struct { + struct policy_handle domain_handle; + const char *username; + + struct usermod { + uint32_t fields; /* bitmask field */ + + const char *account_name; + const char *full_name; + } change; + } in; +}; + + struct libnet_rpc_domain_open { struct { const char *domain_name; |