r8721: Further work on libnet_rpc_usermod function. Now it can change
[Samba/aatanasov.git] / source / libnet / composite.h
blob70e70d04eeb22ce15f6b8517836e3cf536cad95e
1 /*
2 Unix SMB/CIFS implementation.
4 Copyright (C) Rafal Szczesniak 2005
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 composite function io definitions
25 #include "librpc/gen_ndr/ndr_samr.h"
28 struct libnet_rpc_userinfo {
29 struct {
30 struct policy_handle domain_handle;
31 const char *sid;
32 uint16_t level;
33 } in;
34 struct {
35 union samr_UserInfo info;
36 } out;
40 struct libnet_rpc_useradd {
41 struct {
42 struct policy_handle domain_handle;
43 const char *username;
44 } in;
45 struct {
46 struct policy_handle user_handle;
47 } out;
51 struct libnet_rpc_userdel {
52 struct {
53 struct policy_handle domain_handle;
54 const char *username;
55 } in;
56 struct {
57 struct policy_handle user_handle;
58 } out;
62 #define USERMOD_FIELD_ACCOUNT_NAME ( 0x00000001 )
63 #define USERMOD_FIELD_FULL_NAME ( 0x00000002 )
65 struct libnet_rpc_usermod {
66 struct {
67 struct policy_handle domain_handle;
68 const char *username;
70 struct usermod_change {
71 uint32_t fields; /* bitmask field */
73 const char *account_name;
74 const char *full_name;
75 } change;
76 } in;
80 struct libnet_rpc_domain_open {
81 struct {
82 const char *domain_name;
83 uint32_t access_mask;
84 } in;
85 struct {
86 struct policy_handle domain_handle;
87 } out;