Setting v1,v2,search and present options for init request.
[yaz-moved-to-github.git] / zutil / zget.c
index d8a970c..8e09ca7 100644 (file)
@@ -4,7 +4,19 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: zget.c,v $
- * Revision 1.6  2001-03-25 21:55:13  adam
+ * Revision 1.10  2001-09-24 21:48:46  adam
+ * Setting v1,v2,search and present options for init request.
+ *
+ * Revision 1.9  2001/05/18 11:42:03  adam
+ * YAZ Build date for WIN32.
+ *
+ * Revision 1.8  2001/05/17 14:16:15  adam
+ * Added EXTERNAL handling for item update0 (1.0).
+ *
+ * Revision 1.7  2001/05/16 07:22:56  adam
+ * YAZ CVS Date part of implementationVersion in init{request,Response}.
+ *
+ * Revision 1.6  2001/03/25 21:55:13  adam
  * Added odr_intdup. Ztest server returns TaskPackage for ItemUpdate.
  *
  * Revision 1.5  2001/03/13 18:11:38  adam
@@ -88,14 +100,30 @@ Z_InitRequest *zget_InitRequest(ODR o)
     r->referenceId = 0;
     r->options = (Odr_bitmask *)odr_malloc(o, sizeof(*r->options));
     ODR_MASK_ZERO(r->options);
-    r->protocolVersion = (Odr_bitmask *)odr_malloc(o, sizeof(*r->protocolVersion));
+    r->protocolVersion = (Odr_bitmask *)
+       odr_malloc(o, sizeof(*r->protocolVersion));
+
+    ODR_MASK_SET(r->options, Z_Options_search);
+    ODR_MASK_SET(r->options, Z_Options_present);
+
     ODR_MASK_ZERO(r->protocolVersion);
+
+    ODR_MASK_SET(r->protocolVersion, Z_ProtocolVersion_1);
+    ODR_MASK_SET(r->protocolVersion, Z_ProtocolVersion_2);
+
     r->preferredMessageSize = odr_intdup(o, 30*1024);
     r->maximumRecordSize = odr_intdup(o, 30*1024);
     r->idAuthentication = 0;
-    r->implementationId = "YAZ (id=81)";
+    r->implementationId = "81";
     r->implementationName = "Index Data/YAZ";
-    r->implementationVersion = YAZ_VERSION;
+    r->implementationVersion = YAZ_VERSION
+#ifdef YAZ_DATE_STR
+    " (" YAZ_DATE_STR ")"
+#endif
+#ifdef YAZ_OS
+    " " YAZ_OS
+#endif
+       ;
     r->userInformationField = 0;
     r->otherInfo = 0;
     return r;
@@ -113,9 +141,16 @@ Z_InitResponse *zget_InitResponse(ODR o)
     r->preferredMessageSize = odr_intdup(o, 30*1024);
     r->maximumRecordSize = odr_intdup(o, 30*1024);
     r->result = odr_intdup(o, 1);
-    r->implementationId = "YAZ (id=81)";
+    r->implementationId = "81";
     r->implementationName = "Index Data/YAZ";
-    r->implementationVersion = YAZ_VERSION;
+    r->implementationVersion = YAZ_VERSION
+#ifdef YAZ_DATE_STR
+    " (" YAZ_DATE_STR ")"
+#endif
+#ifdef YAZ_OS
+    " " YAZ_OS
+#endif
+       ;
     r->userInformationField = 0;
     r->otherInfo = 0;
     return r;