#!/bin/sh
-# $Id: buildconf.sh,v 1.7 2002-04-15 09:43:30 adam Exp $
+# $Id: buildconf.sh,v 1.8 2002-09-10 11:58:13 adam Exp $
dir=`aclocal --print-ac-dir`
if [ -f $dir/yaz.m4 ]; then
aclocal
fi
libtoolize --force
automake -a
-autoconf || exit 4
+autoconf
if [ -f config.cache ]; then
rm config.cache
fi
* Copyright (c) 1998-2000, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-proxy.h,v 1.5 2002-01-14 12:01:27 adam Exp $
+ * $Id: yaz-proxy.h,v 1.6 2002-09-10 11:58:13 adam Exp $
*/
#include <yaz++/yaz-z-assoc.h>
int m_sr_transform;
int m_seqno;
int m_waiting;
+ ODR m_init_odr;
+ Z_APDU *m_initResponse;
};
/// Information Retrieval Proxy Server.
* Copyright (c) 1998-2001, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-proxy.cpp,v 1.33 2002-09-10 11:30:54 adam Exp $
+ * $Id: yaz-proxy.cpp,v 1.34 2002-09-10 11:58:13 adam Exp $
*/
#include <assert.h>
{
if (m_client->m_init_flag)
{
- Z_APDU *apdu = create_Z_PDU(Z_APDU_initResponse);
+ Z_APDU *apdu = m_client->m_initResponse;
+ apdu->u.initResponse->otherInfo = 0;
if (m_client->m_cookie)
set_otherInformationString(apdu, VAL_COOKIE, 1,
m_client->m_cookie);
if (m_next)
m_next->m_prev = m_prev;
m_waiting = 2; // for debugging purposes only.
+ odr_destroy(m_init_odr);
delete m_last_query;
}
m_last_ok = 0;
m_sr_transform = 0;
m_waiting = 0;
+ m_init_odr = odr_createmem (ODR_DECODE);
+ m_initResponse = 0;
}
const char *Yaz_Proxy::option(const char *name, const char *value)
m_waiting = 0;
yaz_log (LOG_LOG, "Receiving %s from %s", apdu_name(apdu),
get_hostname());
+ if (apdu->which == Z_APDU_initResponse)
+ {
+ NMEM nmem = odr_extract_mem (odr_decode());
+ odr_reset (m_init_odr);
+ nmem_transfer (m_init_odr->mem, nmem);
+ m_initResponse = apdu;
+ nmem_destroy (nmem);
+ }
if (apdu->which == Z_APDU_searchResponse)
{
m_last_resultCount = *apdu->u.searchResponse->resultCount;