X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=server%2Fsession.h;h=2e5503549b00e73d2d30a031bcba8b21abcd8330;hb=115041d41421c262942dd2d97d3828a1e3281ad1;hp=183cd0e38545225fea33b40da96cd8afc78813d9;hpb=a6eef2e7073a7295d1a7bf09f538946135a5ebbb;p=yaz-moved-to-github.git diff --git a/server/session.h b/server/session.h index 183cd0e..2e55035 100644 --- a/server/session.h +++ b/server/session.h @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: session.h,v $ - * Revision 1.22 2000-03-20 19:06:25 adam + * Revision 1.25 2001-07-19 19:51:42 adam + * Added typecasts to make C++ happy. + * + * 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 @@ -100,7 +109,7 @@ typedef struct request char *refid; /* referenceid */ request_state state; - Z_APDU *request; /* Current request */ + Z_APDU *apdu_request; /* Current request */ NMEM request_mem; /* memory handle for request */ int size_response; /* size of buffer */ @@ -153,6 +162,12 @@ 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) (); @@ -160,6 +175,7 @@ typedef struct association int (*bend_delete) (); int (*bend_scan) (); int (*bend_segment) (); +#endif } association; association *create_association(IOCHAN channel, COMSTACK link);