1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | Test suite for libnet calls.
|
---|
4 |
|
---|
5 | Copyright (C) Rafal Szczesniak 2007
|
---|
6 |
|
---|
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.
|
---|
11 |
|
---|
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.
|
---|
16 |
|
---|
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/>.
|
---|
19 | */
|
---|
20 |
|
---|
21 |
|
---|
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);
|
---|
26 |
|
---|
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);
|
---|
31 |
|
---|
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);
|
---|
36 |
|
---|
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);
|
---|
40 |
|
---|
41 | bool test_group_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
|
---|
42 | struct policy_handle *domain_handle,
|
---|
43 | const char *name);
|
---|
44 |
|
---|
45 | void msg_handler(struct monitor_msg *m);
|
---|