r7731: change debug level to not spam the build-farm smbd log
[Samba/ekacnet.git] / source / libnet / composite.h
blob89ad1c4446e438312448dffb5ad2262318b2ee3e
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 struct libnet_rpc_userinfo {
26 struct {
27 struct policy_handle domain_handle;
28 const char *sid;
29 uint16_t level;
30 } in;
31 struct {
32 union samr_UserInfo info;
33 } out;
37 struct libnet_rpc_useradd {
38 struct {
39 struct policy_handle domain_handle;
40 const char *username;
41 } in;
42 struct {
43 struct policy_handle user_handle;
44 } out;
48 struct libnet_rpc_userdel {
49 struct {
50 struct policy_handle domain_handle;
51 const char *username;
52 } in;
53 struct {
54 struct policy_handle user_handle;
55 } out;
59 struct libnet_rpc_domain_open {
60 struct {
61 const char *domain_name;
62 uint32_t access_mask;
63 } in;
64 struct {
65 struct policy_handle domain_handle;
66 } out;