source: branches/samba-3.5.x/source4/torture/libnet/utils.h

Last change on this file was 414, checked in by Herwig Bauernfeind, 16 years ago

Samba 3.5.0: Initial import

File size: 1.6 KB
Line 
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
22bool 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
27bool 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
32bool 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
37bool test_group_create(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
38 struct policy_handle *handle, const char *name,
39 uint32_t *rid);
40
41bool test_group_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
42 struct policy_handle *domain_handle,
43 const char *name);
44
45void msg_handler(struct monitor_msg *m);
Note: See TracBrowser for help on using the repository browser.