/* dict.h -- * Created: Wed Apr 16 08:44:21 1997 by faith@dict.org * Revised: Fri Dec 22 06:06:33 2000 by faith@dict.org * Copyright 1997, 1998, 2000 Rickard E. Faith (faith@dict.org) * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 1, or (at your option) any * later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef _DICT_H_ #define _DICT_H_ #include "dictP.h" #include "maa.h" #include "zlib.h" #include "net.h" #include "codes.h" #include #include #define DICT_DEFAULT_SERVICE "2628" /* Also in dictd.h */ #define DICT_CONFIG_NAME "dict.conf" #define DICT_RC_NAME ".dictrc" #define DBG_VERBOSE (0<<30|1<< 0) /* Verbose */ #define DBG_RAW (0<<30|1<< 1) /* Trace client/server interaction */ #define DBG_SCAN (0<<30|1<< 2) /* Debug configuration file scanner */ #define DBG_PARSE (0<<30|1<< 3) /* Debug configuration file parser */ #define DBG_PIPE (0<<30|1<< 4) /* Debug pipelining */ #define DBG_SERIAL (0<<30|1<< 5) /* Disable pipelining */ #define DBG_TIME (0<<30|1<< 6) /* Time transaction */ #define DBG_URL (0<<30|1<< 7) /* URLs */ typedef struct dictServer { const char *host; const char *port; const char *user; const char *secret; } dictServer; typedef struct dictToken { const char *string; int integer; src_Type src; } dictToken; extern lst_List dict_Servers; /* List of servers to try */ extern const char *dict_pager; /* Pager to use if isatty() */ extern FILE *dict_output; /* Pid of paging process */ /* dmalloc must be last */ #ifdef DMALLOC_FUNC_CHECK # include "dmalloc.h" #endif #endif