* Copyright (c) 1998-2004, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-proxy-config.cpp,v 1.26 2004-01-29 21:33:39 adam Exp $
+ * $Id: yaz-proxy-config.cpp,v 1.27 2004-01-30 00:38:28 adam Exp $
*/
#include <ctype.h>
}
}
#endif
- yaz_log(LOG_WARN, "No explain node");
return 0;
}
* Copyright (c) 1998-2004, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-proxy.cpp,v 1.92 2004-01-29 20:53:34 adam Exp $
+ * $Id: yaz-proxy.cpp,v 1.93 2004-01-30 00:38:28 adam Exp $
*/
#include <assert.h>
Z_HTTP_Response *hres = gdu->u.HTTP_Response;
if (m_http_version)
hres->version = odr_strdup(o, m_http_version);
- m_http_keepalive = 0;
+ if (m_http_keepalive)
+ z_HTTP_header_add(o, &hres->headers, "Connection", "Keep-Alive");
+ else
+ timeout(0);
+
if (m_log_mask & PROXY_LOG_REQ_CLIENT)
{
yaz_log (LOG_LOG, "%sSending %s to client", m_session_str,
z_HTTP_header_add(o, &hres->headers, "Content-Type", ctype);
if (m_http_keepalive)
z_HTTP_header_add(o, &hres->headers, "Connection", "Keep-Alive");
+ else
+ timeout(0);
static Z_SOAP_Handler soap_handlers[2] = {
#if HAVE_XSLT
m_client = 0;
m_parent->pre_init();
}
- if (m_http_version)
- {
- if (!m_http_keepalive)
- {
-#if 1
- timeout(1);
-#else
- shutdown();
- return -1;
-#endif
- }
- }
return r;
}
}
int len = 0;
Z_GDU *p = z_get_HTTP_Response(odr_encode(), 400);
+ timeout(0);
send_GDU(p, &len);
- timeout(1);
}
void Yaz_Proxy::handle_incoming_Z_PDU(Z_APDU *apdu)
* Copyright (c) 1998-2004, Index Data.
* See the file LICENSE for details.
*
- * $Id: yaz-socket-manager.cpp,v 1.24 2004-01-07 13:40:06 adam Exp $
+ * $Id: yaz-socket-manager.cpp,v 1.25 2004-01-30 00:38:28 adam Exp $
*/
#include <assert.h>
#ifdef WIN32
yaz_log (LOG_LOG|LOG_WARN, "select");
return -1;
}
+ yaz_log(m_log, "select returned res=%d", res);
now = time(0);
for (p = m_observers; p; p = p->next)
{
if (FD_ISSET(fd, &except))
mask |= YAZ_SOCKET_OBSERVE_EXCEPT;
- if (mask)
+ if (res > 0 && mask)
{
YazSocketEvent *event = new YazSocketEvent;
p->last_activity = now;
yaz_log (m_log, "putEvent I/O mask=%d", mask);
}
- else if (p->timeout && (now - p->last_activity) >= p->timeout)
+ else if ((now - p->last_activity) >= p->timeout)
{
YazSocketEvent *event = new YazSocketEvent;
assert (p->last_activity);