r26572: Fix warnings in the Python code.
[jelmer/samba4-debian.git] / source / scripting / python / misc.i
1 /* 
2    Unix SMB/CIFS implementation.
3    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
4    
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9    
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14    
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 %module(package="samba.misc") misc
20
21 %{
22 #include "includes.h"
23 #include "ldb.h"
24 #include "param/param.h"
25 #include "auth/credentials/credentials.h"
26 #include "dsdb/samdb/samdb.h"
27 #include "lib/ldb-samba/ldif_handlers.h"
28 %}
29
30 %import "stdint.i"
31 %include "exception.i"
32 %import "../../lib/talloc/talloc.i"
33 %import "../../lib/ldb/ldb.i"
34 %import "../../auth/credentials/credentials.i"
35 %import "../../param/param.i"
36 %import "../../libcli/security/security.i"
37 %import "../../libcli/util/errors.i"
38
39 %rename(random_password) generate_random_str;
40 char *generate_random_str(TALLOC_CTX *mem_ctx, size_t len);
41
42 %inline %{
43 void ldb_set_credentials(struct ldb_context *ldb, struct cli_credentials *creds)
44 {
45     ldb_set_opaque(ldb, "credentials", creds);
46 }
47
48 void ldb_set_session_info(struct ldb_context *ldb, struct auth_session_info *session_info)
49 {
50     ldb_set_opaque(ldb, "sessionInfo", session_info);
51 }
52
53 void ldb_set_loadparm(struct ldb_context *ldb, struct loadparm_context *lp_ctx)
54 {
55     ldb_set_opaque(ldb, "loadparm", lp_ctx);
56 }
57
58 %}
59
60 bool samdb_set_domain_sid(struct ldb_context *ldb, 
61                           const struct dom_sid *dom_sid_in);
62
63 WERROR dsdb_attach_schema_from_ldif_file(struct ldb_context *ldb, const char *pf, const char *df);
64
65 %rename(version) samba_version_string;
66 const char *samba_version_string(void);
67 int dsdb_set_global_schema(struct ldb_context *ldb);
68 int ldb_register_samba_handlers(struct ldb_context *ldb);