X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=server%2Fsession.h;h=179b2ce49637df006f36b599473844eae699c32b;hp=cd7c2a3b227fbdedf49b9b1febee24e232b08ae4;hb=afff2d64ae8758642c8e88bfebff9c00a982daa4;hpb=5f4456fa00e080d850f7e25aba2f1e12cab8adcf diff --git a/server/session.h b/server/session.h index cd7c2a3..179b2ce 100644 --- a/server/session.h +++ b/server/session.h @@ -4,7 +4,11 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: session.h,v $ - * Revision 1.1 1995-03-14 10:28:02 quinn + * Revision 1.2 1995-03-27 08:34:29 quinn + * Added dynamic server functionality. + * Released bindings to session.c (is now redundant) + * + * Revision 1.1 1995/03/14 10:28:02 quinn * More work on demo server. * * @@ -15,6 +19,7 @@ #include #include +#include typedef struct association { @@ -29,6 +34,7 @@ typedef struct association int input_buffer_len; int input_apdu_len; int state; + oid_proto proto; #define ASSOC_UNINIT 0 #define ASSOC_IDLE 1 @@ -38,6 +44,7 @@ typedef struct association } association; association *create_association(IOCHAN channel, COMSTACK link); +void destroy_association(association *h); void ir_session(IOCHAN h, int event); #endif