Release 1.6.4
[yazpp-moved-to-github.git] / src / yaz-z-server.cpp
index ffa9d26..6dfc49d 100644 (file)
@@ -1,8 +1,11 @@
 /* This file is part of the yazpp toolkit.
- * Copyright (C) 1998-2009 Index Data and Mike Taylor
+ * Copyright (C) Index Data 
  * See the file LICENSE for details.
  */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <yaz/log.h>
 #include <yazpp/z-server.h>
 #include <yaz/oid_db.h>
@@ -58,16 +61,16 @@ void Z_Server::recv_GDU (Z_GDU *apdu, int len)
 }
 
 void Z_Server::recv_Z_PDU (Z_APDU *apdu_request, int len)
-{   
+{
     Z_Server_Facility_Info *f = m_facilities;
-    
+
     if (apdu_request->which == Z_APDU_initRequest)
     {
         Z_APDU *apdu_response = create_Z_PDU(Z_APDU_initResponse);
 
         Z_InitRequest *req = apdu_request->u.initRequest;
         Z_InitResponse *resp = apdu_response->u.initResponse;
-        
+
         if (ODR_MASK_GET(req->protocolVersion, Z_ProtocolVersion_1))
         {
             ODR_MASK_SET(resp->protocolVersion, Z_ProtocolVersion_1);
@@ -128,11 +131,11 @@ void Z_ServerUtility::create_surrogateDiagnostics(
     ODR odr, Z_NamePlusRecord *rec, const char *dbname,
     int error, char *const addinfo)
 {
-    int *err = (int *)odr_malloc (odr, sizeof(*err));
+    Odr_int *err = (Odr_int *)odr_malloc (odr, sizeof(*err));
     Z_DiagRec *drec = (Z_DiagRec *)odr_malloc (odr, sizeof(*drec));
     Z_DefaultDiagFormat *dr = (Z_DefaultDiagFormat *)
         odr_malloc (odr, sizeof(*dr));
-    
+
     yaz_log(YLOG_DEBUG, "SurrogateDiagnotic: %d -- %s", error, addinfo);
     *err = error;
     rec->databaseName = dbname ? odr_strdup (odr, dbname) : 0;
@@ -152,7 +155,7 @@ Z_Records *Z_ServerUtility::create_nonSurrogateDiagnostics (
 {
     Z_Records *rec = (Z_Records *)
         odr_malloc (odr, sizeof(*rec));
-    int *err = (int *)
+    Odr_int *err = (Odr_int *)
         odr_malloc (odr, sizeof(*err));
     Z_DiagRec *drec = (Z_DiagRec *)
         odr_malloc (odr, sizeof(*drec));
@@ -177,11 +180,11 @@ void Z_ServerUtility::create_diagnostics (
     Z_DiagRec *drec = (Z_DiagRec *) odr_malloc (odr, sizeof(*drec));
     Z_DefaultDiagFormat *dr = (Z_DefaultDiagFormat *)
         odr_malloc (odr, sizeof(*dr));
-    
+
     *num = 1;
     *dreca = (Z_DiagRec **) odr_malloc (odr, sizeof(*dreca));
     (*dreca)[0] = drec;
-        
+
     drec->which = Z_DiagRec_defaultFormat;
     drec->u.defaultFormat = dr;
     dr->diagnosticSetId = odr_oiddup(odr, yaz_oid_diagset_bib_1);