X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zutil%2Fzget.c;h=30418fab97af622de981fe76796c98fe7bef2bd9;hb=9e70372b2df6adc53ff9eef0bdb3a654e8975743;hp=d8a970c8a25b53316a9bcff81e37f66870505a2e;hpb=8d08fd5b79e49e14ca014de8e6bed12a2cc0468d;p=yaz-moved-to-github.git diff --git a/zutil/zget.c b/zutil/zget.c index d8a970c..30418fa 100644 --- a/zutil/zget.c +++ b/zutil/zget.c @@ -4,7 +4,16 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: zget.c,v $ - * Revision 1.6 2001-03-25 21:55:13 adam + * 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 @@ -93,9 +102,16 @@ Z_InitRequest *zget_InitRequest(ODR o) 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 +129,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;