r15099: An attempt to fix BSD make portability issues. With these changes Samba 4...
[Samba.git] / source4 / libnet / composite.h
blob916e3061249e8c15c8ac8a4519249513524341a8
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/samr.h"
28 * Monitor structure and message types definitions. Composite function monitoring
29 * allows client application to be notified on function progress. This enables
30 * eg. gui client to display progress bars, status messages, etc.
34 #define rpc_create_user (0x00000001) /* userman.h */
35 #define rpc_open_user (0x00000002) /* userinfo.h */
36 #define rpc_query_user (0x00000003) /* userinfo.h */
37 #define rpc_close_user (0x00000004) /* userinfo.h */
38 #define rpc_lookup_name (0x00000005) /* userman.h */
39 #define rpc_delete_user (0x00000006) /* userman.h */
40 #define rpc_set_user (0x00000007) /* userman.h */
42 struct monitor_msg {
43 uint32_t type;
44 void *data;
45 size_t data_size;
48 struct libnet_rpc_userinfo {
49 struct {
50 struct policy_handle domain_handle;
51 const char *sid;
52 uint16_t level;
53 } in;
54 struct {
55 union samr_UserInfo info;
56 } out;
60 struct libnet_rpc_useradd {
61 struct {
62 struct policy_handle domain_handle;
63 const char *username;
64 } in;
65 struct {
66 struct policy_handle user_handle;
67 } out;
71 struct libnet_rpc_userdel {
72 struct {
73 struct policy_handle domain_handle;
74 const char *username;
75 } in;
76 struct {
77 struct policy_handle user_handle;
78 } out;
82 #define USERMOD_FIELD_ACCOUNT_NAME ( 0x00000001 )
83 #define USERMOD_FIELD_FULL_NAME ( 0x00000002 )
84 #define USERMOD_FIELD_DESCRIPTION ( 0x00000010 )
85 #define USERMOD_FIELD_COMMENT ( 0x00000020 )
86 #define USERMOD_FIELD_LOGON_SCRIPT ( 0x00000100 )
87 #define USERMOD_FIELD_PROFILE_PATH ( 0x00000200 )
88 #define USERMOD_FIELD_ACCT_EXPIRY ( 0x00004000 )
89 #define USERMOD_FIELD_ALLOW_PASS_CHG ( 0x00008000 )
90 #define USERMOD_FIELD_FORCE_PASS_CHG ( 0x00010000 )
91 #define USERMOD_FIELD_ACCT_FLAGS ( 0x00100000 )
93 struct libnet_rpc_usermod {
94 struct {
95 struct policy_handle domain_handle;
96 const char *username;
98 struct usermod_change {
99 uint32_t fields; /* bitmask field */
101 const char *account_name;
102 const char *full_name;
103 const char *description;
104 const char *comment;
105 const char *logon_script;
106 const char *profile_path;
107 struct timeval *acct_expiry;
108 struct timeval *allow_password_change;
109 struct timeval *force_password_change;
110 uint32_t acct_flags;
111 } change;
112 } in;
116 struct libnet_rpc_domain_open {
117 struct {
118 const char *domain_name;
119 uint32_t access_mask;
120 } in;
121 struct {
122 struct policy_handle domain_handle;
123 } out;