X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=server%2Fsession.h;h=5217a897bc30b3ea98bcacb90db1fecce431fda8;hb=c1957f49e5f8c37c06ed839cde52d60108bc2e35;hp=45146c69ffad869fe5a0ffaec75bbc7e81ae9576;hpb=d9ee01635f03f9095a66f71b73580560d48798e8;p=yaz-moved-to-github.git diff --git a/server/session.h b/server/session.h index 45146c6..5217a89 100644 --- a/server/session.h +++ b/server/session.h @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: session.h,v $ - * Revision 1.21 1999-11-30 13:47:12 adam + * Revision 1.24 2000-11-23 10:58:32 adam + * SSL comstack support. Separate POSIX thread support library. + * + * Revision 1.23 2000/04/05 07:39:55 adam + * Added shared library support (libtool). + * + * Revision 1.22 2000/03/20 19:06:25 adam + * Added Segment request for fronend server. Work on admin for client. + * + * 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 @@ -150,12 +159,20 @@ typedef struct association int maximumRecordSize; int version; /* highest version-bit set (2 or 3) */ + unsigned cs_get_mask; + unsigned cs_put_mask; + unsigned cs_accept_mask; + + struct bend_initrequest *init; +#if 0 int (*bend_sort) (); int (*bend_search) (); int (*bend_present) (); int (*bend_esrequest) (); int (*bend_delete) (); int (*bend_scan) (); + int (*bend_segment) (); +#endif } association; association *create_association(IOCHAN channel, COMSTACK link);