X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=server%2Fsession.h;h=45146c69ffad869fe5a0ffaec75bbc7e81ae9576;hb=d9ee01635f03f9095a66f71b73580560d48798e8;hp=79f5604a423574b1ee16300005cd52d0d9ac6dbf;hpb=3060b77b776350c6e677c06b3070542dba5c42b6;p=yaz-moved-to-github.git diff --git a/server/session.h b/server/session.h index 79f5604..45146c6 100644 --- a/server/session.h +++ b/server/session.h @@ -1,10 +1,23 @@ /* - * Copyright (C) 1995-1998, Index Data I/S + * Copyright (C) 1995-1999, Index Data * See the file LICENSE for details. * Sebastian Hammer, Adam Dickmeiss * * $Log: session.h,v $ - * Revision 1.17 1998-07-20 12:38:43 adam + * Revision 1.21 1999-11-30 13:47:12 adam + * Improved installation. Moved header files to include/yaz. + * + * Revision 1.20 1999/10/11 10:01:24 adam + * Implemented bend_sort_rr handler for frontend server. + * + * Revision 1.19 1999/04/20 09:56:48 adam + * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun). + * Modified all encoders/decoders to reflect this change. + * + * Revision 1.18 1998/08/03 10:23:57 adam + * Fixed bug regarding Options for Sort. + * + * Revision 1.17 1998/07/20 12:38:43 adam * Implemented delete result set service to server API. * * Revision 1.16 1998/03/31 11:07:45 adam @@ -65,11 +78,11 @@ #ifndef SESSION_H #define SESSION_H -#include -#include -#include -#include #include +#include +#include +#include +#include #include "eventl.h" typedef enum { @@ -109,9 +122,9 @@ typedef struct request_q */ typedef enum { - ASSOC_NEW, /* not initialized yet */ - ASSOC_UP, /* normal operation */ - ASSOC_DEAD /* dead. Close if input arrives */ + ASSOC_NEW, /* not initialized yet */ + ASSOC_UP, /* normal operation */ + ASSOC_DEAD /* dead. Close if input arrives */ } association_state; typedef struct association @@ -142,6 +155,7 @@ typedef struct association int (*bend_present) (); int (*bend_esrequest) (); int (*bend_delete) (); + int (*bend_scan) (); } association; association *create_association(IOCHAN channel, COMSTACK link);