X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Ftest_filter_auth_simple.cpp;h=9872e2e301a5a33aec01246b6d6f3c8942b3f6ac;hb=bf6a5858e2c8839a5f8a4bdf087bcb94c54084bb;hp=1ad78c926a071e81c63f05451efdef9c0810eb37;hpb=665559cbc22546e8df69be33a7d492294cab9fb1;p=metaproxy-moved-to-github.git diff --git a/src/test_filter_auth_simple.cpp b/src/test_filter_auth_simple.cpp index 1ad78c9..9872e2e 100644 --- a/src/test_filter_auth_simple.cpp +++ b/src/test_filter_auth_simple.cpp @@ -1,5 +1,5 @@ /* This file is part of Metaproxy. - Copyright (C) 2005-2008 Index Data + Copyright (C) 2005-2011 Index Data Metaproxy is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -21,10 +21,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #include #include "filter_auth_simple.hpp" -#include "util.hpp" +#include #include "router_chain.hpp" -#include "session.hpp" -#include "package.hpp" +#include #define BOOST_AUTO_TEST_MAIN #define BOOST_TEST_DYN_LINK @@ -43,18 +42,16 @@ public: } Z_GDU *gdu = package.request().get(); - if (gdu) + if (gdu && gdu->which == Z_GDU_Z3950) { // std::cout << "Got PDU. Sending init response\n"; mp::odr odr; - Z_APDU *apdu = zget_APDU(odr, Z_APDU_initResponse); - - apdu->u.initResponse->implementationName = "YP2/YAZ"; - + Z_APDU *apdu = odr.create_initResponse(gdu->u.z3950, 0, 0); package.response() = apdu; } package.move(); }; + void configure(const xmlNode* ptr, bool test_only, const char *path) {}; };