1 /* This file is part of the Zebra server.
2 Copyright (C) 1994-2009 Index Data
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28 ISAMS_M *key_isams_m (Res res, ISAMS_M *me)
32 me->compare_item = key_compare;
33 me->log_item = key_logdump_txt;
35 me->codec.start = iscz1_start;
36 me->codec.decode = iscz1_decode;
37 me->codec.encode = iscz1_encode;
38 me->codec.stop = iscz1_stop;
39 me->codec.reset = iscz1_reset;
41 me->debug = atoi(res_get_def (res, "isamsDebug", "0"));
46 ISAMC_M *key_isamc_m (Res res, ISAMC_M *me)
50 me->compare_item = key_compare;
51 me->log_item = key_logdump_txt;
53 me->codec.start = iscz1_start;
54 me->codec.decode = iscz1_decode;
55 me->codec.encode = iscz1_encode;
56 me->codec.stop = iscz1_stop;
57 me->codec.reset = iscz1_reset;
59 me->debug = atoi(res_get_def (res, "isamcDebug", "0"));
68 * c-file-style: "Stroustrup"
69 * indent-tabs-mode: nil
71 * vim: shiftwidth=4 tabstop=8 expandtab