X-Git-Url: http://git.indexdata.com/?p=yazproxy-moved-to-github.git;a=blobdiff_plain;f=src%2Ft-server.cpp;h=d53cbe47678170be3fdfbe47936c600c63de063d;hp=ad88d02db296d17cc205a09ee8983b4424ed545f;hb=82b0575e71269b113acb2bb7c7541a470ed07c9a;hpb=32e20aac80d955f4eaa2b78dfd99788bbc02edb2 diff --git a/src/t-server.cpp b/src/t-server.cpp index ad88d02..d53cbe4 100644 --- a/src/t-server.cpp +++ b/src/t-server.cpp @@ -1,9 +1,20 @@ -/* - * Copyright (c) 1998-2005, Index Data. - * See the file LICENSE for details. - * - * $Id: t-server.cpp,v 1.4 2005-09-12 20:09:14 adam Exp $ - */ +/* This file is part of YAZ proxy + Copyright (C) 1998-2011 Index Data + +YAZ proxy 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 +Software Foundation; either version 2, or (at your option) any later +version. + +YAZ proxy is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ #include #include @@ -11,10 +22,15 @@ #include #include #include "msg-thread.h" -#include -#include -#include -#include +#include +#include +#include +#include +#include + +#if HAVE_UNISTD_H +#include +#endif using namespace yazpp_1; @@ -58,11 +74,18 @@ IMsg_Thread *Auth_Msg::handle() { case Z_APDU_initRequest: apdu = zget_APDU(odr, Z_APDU_initResponse); + ODR_MASK_SET(apdu->u.initResponse->options, Z_Options_triggerResourceCtrl); + ODR_MASK_SET(apdu->u.initResponse->options, Z_Options_search); + ODR_MASK_SET(apdu->u.initResponse->options, Z_Options_present); break; case Z_APDU_searchRequest: +#if HAVE_UNISTD_H sleep(5); +#endif apdu = zget_APDU(odr, Z_APDU_searchResponse); break; + case Z_APDU_triggerResourceControlRequest: + break; default: apdu = zget_APDU(odr, Z_APDU_close); m_close_flag = 1; @@ -116,6 +139,7 @@ void Auth_Msg::result() } if (m_front->m_delete_flag && m_front->m_no_requests == 0) delete m_front; + delete this; } MyServer::MyServer(IPDU_Observable *the_PDU_Observable, @@ -245,6 +269,7 @@ int main(int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab