Added --with-yc option to configure. For the data1_node in data1.h:
[yaz-moved-to-github.git] / server / session.h
index f0f96eb..7c13234 100644 (file)
@@ -4,7 +4,17 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: session.h,v $
- * Revision 1.15  1998-02-11 11:53:36  adam
+ * 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.
+ *
+ * Revision 1.15  1998/02/11 11:53:36  adam
  * Changed code so that it compiles as C++.
  *
  * Revision 1.14  1998/02/10 11:03:57  adam
@@ -102,9 +112,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
@@ -133,6 +143,8 @@ typedef struct association
     int (*bend_sort) ();
     int (*bend_search) ();
     int (*bend_present) ();
+    int (*bend_esrequest) ();
+    int (*bend_delete) ();
 } association;
 
 association *create_association(IOCHAN channel, COMSTACK link);