r26316: Use contexts for conversion functions.
[sfrench/samba-autobuild/.git] / source4 / torture / libnet / utils.h
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 dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
23                      struct policy_handle *handle, struct lsa_String *domname,
24                      struct dom_sid2 *sid);
25
26 bool test_user_create(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
27                       struct policy_handle *handle, const char *name,
28                       uint32_t *rid);
29
30 bool test_user_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
31                        struct policy_handle *domain_handle,
32                        const char *name);
33
34 bool test_group_create(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
35                        struct policy_handle *handle, const char *name,
36                        uint32_t *rid);
37
38 bool test_group_cleanup(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
39                         struct policy_handle *domain_handle,
40                         const char *name);
41
42 void msg_handler(struct monitor_msg *m);