]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libcharon/sa/xauth/xauth_method.c
Update copyright headers after acquisition by secunet
[thirdparty/strongswan.git] / src / libcharon / sa / xauth / xauth_method.c
1 /*
2 * Copyright (C) 2006 Martin Willi
3 *
4 * Copyright (C) secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * for more details.
15 */
16
17 #include "xauth_method.h"
18
19 #include <daemon.h>
20
21 ENUM(xauth_role_names, XAUTH_SERVER, XAUTH_PEER,
22 "XAUTH_SERVER",
23 "XAUTH_PEER",
24 );
25
26 /**
27 * See header
28 */
29 bool xauth_method_register(plugin_t *plugin, plugin_feature_t *feature,
30 bool reg, void *data)
31 {
32 if (reg)
33 {
34 charon->xauth->add_method(charon->xauth, feature->arg.xauth,
35 feature->type == FEATURE_XAUTH_SERVER ? XAUTH_SERVER : XAUTH_PEER,
36 (xauth_constructor_t)data);
37 }
38 else
39 {
40 charon->xauth->remove_method(charon->xauth, (xauth_constructor_t)data);
41 }
42 return TRUE;
43 }