r9145: Some work on eventlog since jerry is doing some in Samba3. (-:
[samba.git] / source4 / libnet / composite.h
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Rafal Szczesniak 2005
5    
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.
10    
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.
15    
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.
19 */
20
21 /*
22   composite function io definitions
23 */
24
25 #include "librpc/gen_ndr/ndr_samr.h"
26
27
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;
37 };
38
39
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;
48 };
49
50
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;
59 };
60
61
62 #define USERMOD_FIELD_ACCOUNT_NAME    ( 0x00000001 )
63 #define USERMOD_FIELD_FULL_NAME       ( 0x00000002 )
64 #define USERMOD_FIELD_DESCRIPTION     ( 0x00000010 )
65 #define USERMOD_FIELD_COMMENT         ( 0x00000020 )
66 #define USERMOD_FIELD_LOGON_SCRIPT    ( 0x00000100 )
67 #define USERMOD_FIELD_PROFILE_PATH    ( 0x00000200 )
68 #define USERMOD_FIELD_ACCT_EXPIRY     ( 0x00004000 )
69 #define USERMOD_FIELD_ALLOW_PASS_CHG  ( 0x00008000 )
70 #define USERMOD_FIELD_FORCE_PASS_CHG  ( 0x00010000 )
71 #define USERMOD_FIELD_ACCT_FLAGS      ( 0x00100000 )
72
73 struct libnet_rpc_usermod {
74         struct {
75                 struct policy_handle domain_handle;
76                 const char *username;
77
78                 struct usermod_change {
79                         uint32_t fields;    /* bitmask field */
80
81                         const char *account_name;
82                         const char *full_name;
83                         const char *description;
84                         const char *comment;
85                         const char *logon_script;
86                         const char *profile_path;
87                         struct timeval *acct_expiry;
88                         struct timeval *allow_password_change;
89                         struct timeval *force_password_change;
90                         uint32_t acct_flags;
91                 } change;
92         } in;
93 };
94
95
96 struct libnet_rpc_domain_open {
97         struct {
98                 const char *domain_name;
99                 uint32_t access_mask;
100         } in;
101         struct {
102                 struct policy_handle domain_handle;
103         } out;
104 };