Implemented plugin facility. First use is authentication from
[yazproxy-moved-to-github.git] / include / yazproxy / module.h
1 /* $Id: module.h,v 1.1 2005-02-11 15:19:08 adam Exp $
2    Copyright (c) 1998-2005, Index Data.
3
4 This file is part of the yaz-proxy.
5
6 YAZ proxy is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
9 version.
10
11 YAZ proxy is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with YAZ proxy; see the file LICENSE.  If not, write to the
18 Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA.
20  */
21
22 #ifndef YAZ_PROXY_MODULE_H
23 #define YAZ_PROXY_MODULE_H_INCLUDED
24
25 struct Yaz_ProxyModule_entry {
26     int int_version;
27     char *module_name;
28     char *module_description;
29     void *fl;
30 };
31
32 #define  YAZPROXY_RET_NOT_ME 0 /* Did not catch it. pass to other handler */
33 #define  YAZPROXY_RET_OK     1 /* OK, grabbed */
34 #define  YAZPROXY_RET_PERM   2 /* Permissiong denied, reject etc. */
35
36 struct Yaz_ProxyModule_int0 {
37     void *(*init)(void);
38     void (*destroy)(void *handle);
39     int (*authenticate)(void *handle,
40                         const char *user, const char *group, const char *pw);
41 };
42
43 #endif