s3: Fix the format string for smbcontrol pool-usage
[Samba/fernandojvsilva.git] / source4 / torture / libnet / utils.h
blobb513b1a29e64fc10e884bf6084cb4363a046260d
1 /*
2 Unix SMB/CIFS implementation.
3 Test suite for libnet calls.
5 Copyright (C) Rafal Szczesniak 2007
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 bool test_opendomain(struct torture_context *tctx,
23 struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
24 struct policy_handle *handle, struct lsa_String *domname,
25 struct dom_sid2 *sid);
27 bool test_user_create(struct torture_context *tctx,
28 struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
29 struct policy_handle *handle, const char *name,
30 uint32_t *rid);
32 bool test_user_cleanup(struct torture_context *tctx,
33 struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
34 struct policy_handle *domain_handle,
35 const char *name);
37 bool test_group_create(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
38 struct policy_handle *handle, const char *name,
39 uint32_t *rid);
41 bool test_group_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
42 struct policy_handle *domain_handle,
43 const char *name);
45 void msg_handler(struct monitor_msg *m);