5c6f06edefcea73e8e7a79da596162aceb84c23a
[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 #include "param/param.h"
31 %}
32
33 %import "carrays.i"
34 %import "stdint.i"
35 %import "typemaps.i"
36 %import "../lib/talloc/talloc.i"
37 %import "../param/param.i"
38
39 %typemap(default) struct auth_session_info * {
40     $1 = system_session_anon(NULL, global_loadparm);
41 }
42
43 %typemap(freearg) struct auth_session_info * {
44     talloc_free($1);
45 }
46
47 struct auth_session_info *system_session(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx);
48 struct auth_session_info *system_session_anon(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx);