X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Futil.hpp;h=f610ce5b1049f7ccc235c0b34eea9e204ad005e7;hb=1751782d8e3c9d4574754463ffd43373cf92133a;hp=93caa33eca301b21c089c07ff3abf4fb103687de;hpb=627806c9d1a499273ecea94fbc3e01f4cfc0de8a;p=metaproxy-moved-to-github.git diff --git a/src/util.hpp b/src/util.hpp index 93caa33..f610ce5 100644 --- a/src/util.hpp +++ b/src/util.hpp @@ -1,4 +1,4 @@ -/* $Id: util.hpp,v 1.6 2006-01-17 13:34:51 adam Exp $ +/* $Id: util.hpp,v 1.10 2006-01-19 21:43:51 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -13,6 +13,8 @@ #include +#include "package.hpp" + namespace yp2 { namespace util { bool pqf(ODR odr, Z_APDU *apdu, const std::string &q); @@ -26,6 +28,19 @@ namespace yp2 { int get_vhost_otherinfo(Z_OtherInformation **otherInformation, bool remove_flag, std::list &vhosts); + void set_vhost_otherinfo(Z_OtherInformation **otherInformation, + ODR odr, + const std::list &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 { @@ -45,6 +60,8 @@ namespace yp2 { Z_APDU *create_scanResponse(Z_APDU *in_apdu, int error, const char *addinfo); Z_APDU *create_APDU(int type, Z_APDU *in_apdu); + Z_GDU *create_HTTP_Response(yp2::Session &session, + Z_HTTP_Request *req, int code); private: ODR m_odr; };