X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=server%2Fsession.h;h=5f6beb8aa8ee389df7044e5b007675f3b5c69e35;hp=251b89e61ea8a2572d95e7dafd29d96d53916822;hb=b440dce0831a72bebe4f4821ab7771cc05e8facb;hpb=b436ce38e1e619d2225c7c75c1f0de841aa13bad diff --git a/server/session.h b/server/session.h index 251b89e..5f6beb8 100644 --- a/server/session.h +++ b/server/session.h @@ -1,10 +1,20 @@ /* - * 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.16 1998-03-31 11:07:45 adam + * 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 * Furhter work on UNIverse resource report. * Added Extended Services handling in frontend server. * @@ -106,9 +116,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 @@ -138,6 +148,7 @@ typedef struct association int (*bend_search) (); int (*bend_present) (); int (*bend_esrequest) (); + int (*bend_delete) (); } association; association *create_association(IOCHAN channel, COMSTACK link);