Filter multi lets scan through if only one target/db is selected
[metaproxy-moved-to-github.git] / src / util.hpp
index 2ab14a1..3ee0249 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: util.hpp,v 1.4 2006-01-13 15:09:35 adam Exp $
+/* $Id: util.hpp,v 1.8 2006-01-17 17:55:40 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -9,6 +9,7 @@
 
 #include <yaz/z-core.h>
 #include <string>
+#include <list>
 
 #include <boost/utility.hpp>
 
@@ -17,6 +18,24 @@ namespace yp2 {
        bool pqf(ODR odr, Z_APDU *apdu, const std::string &q);
         Z_ReferenceId **get_referenceId(Z_APDU *apdu);
         Z_APDU *create_APDU(ODR odr, int type, Z_APDU *in_apdu);
+        bool set_databases_from_zurl(ODR odr, std::string zurl,
+                                     int *db_num, char ***db_strings);
+        void split_zurl(std::string zurl, std::string &host,
+                        std::list<std::string> &db);
+
+        int get_vhost_otherinfo(Z_OtherInformation **otherInformation,
+                                bool remove_flag,
+                                std::list<std::string> &vhosts);
+        void get_init_diagnostics(Z_InitResponse *res,
+                                  int &error_code, std::string &addinfo);
+        void get_default_diag(Z_DefaultDiagFormat *r,
+                              int &error_code, std::string &addinfo);
+
+        void piggyback(int smallSetUpperBound,
+                       int largeSetLowerBound,
+                       int mediumSetPresentNumber,
+                       int result_set_size,
+                       int &number_to_present);
     };
 
     class odr : public boost::noncopyable {