--- 1.8.6 2002/MM/DD
+Client displays USR.1:SearchResult-1 (hits per term).
+
+Additional Search Info for search in Generic Frontend Server.
+
Fixed CCL parsing of "field=s".
WIN32 installer - using the excellent NSIS software from nullsoft.
* OF THIS SOFTWARE.
*
* $Log: backend.h,v $
- * Revision 1.13 2002-03-05 12:45:49 mike
+ * Revision 1.14 2002-03-20 14:36:00 adam
+ * Additional Search Info for GFS
+ *
+ * Revision 1.13 2002/03/05 12:45:49 mike
* Add trivial support for implementation_id specified by backend.
*
* Revision 1.12 2001/03/25 21:55:12 adam
int hits; /* number of hits */
int errcode; /* 0==OK */
char *errstring; /* system error string or NULL */
+ Z_OtherInformation *search_info; /* additional search info */
} bend_search_rr;
/* extended present handler. Does not replace bend_fetch. */
* Copyright (c) 1995-2002, Index Data
* See the file LICENSE for details.
*
- * $Id: seshigh.c,v 1.127 2002-03-05 12:45:49 mike Exp $
+ * $Id: seshigh.c,v 1.128 2002-03-20 14:36:00 adam Exp $
*/
/*
bsrr->errcode = 0;
bsrr->hits = 0;
bsrr->errstring = NULL;
+ bsrr->search_info = NULL;
(assoc->init->bend_search)(assoc->backend, bsrr);
if (!bsrr->request)
return 0;
resp->presentStatus = 0;
}
}
+ resp->additionalSearchInfo = bsrt->search_info;
return apdu;
}