2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 typedef struct private_user_t private_user_t
;
21 * private data of user
23 struct private_user_t
{
31 * user id, if we are logged in; otherwise 0
37 * Implementation of user_t.set_user
39 static void set_user(private_user_t
*this, u_int id
)
45 * Implementation of user_t.get_user
47 static u_int
get_user(private_user_t
*this)
53 * Implementation of context_t.destroy
55 static void destroy(private_user_t
*this)
63 user_t
*user_create(void *param
)
65 private_user_t
*this= malloc_thing(private_user_t
);
67 this->public.set_user
= (void(*)(user_t
*,u_int id
))set_user
;
68 this->public.get_user
= (u_int(*)(user_t
*))get_user
;
69 this->public.context
.destroy
= (void(*)(context_t
*))destroy
;