r26445: Fix credentials python bindings.
[ira/wip.git] / source / auth / auth.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.auth") auth
20
21 %{
22
23 /* Include headers */
24 #include <stdint.h>
25 #include <stdbool.h>
26
27 #include "includes.h"
28 #include "auth/session.h"
29 #include "auth/system_session_proto.h"
30 %}
31
32 %include "carrays.i"
33 %include "stdint.i"
34 %include "typemaps.i"
35 %import "../lib/talloc/talloc.i"
36
37 %typemap(default) struct auth_session_info * {
38     $1 = system_session_anon(NULL, global_loadparm);
39 }
40
41 %typemap(freearg) struct auth_session_info * {
42     talloc_free($1);
43 }
44
45 struct auth_session_info *system_session(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx);
46 struct auth_session_info *system_session_anon(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx);