/*
- * $Id: ssl.cc,v 1.126 2002/10/14 08:16:59 robertc Exp $
+ * $Id: ssl.cc,v 1.127 2002/10/14 08:51:03 robertc Exp $
*
* DEBUG: section 26 Secure Sockets Layer Proxy
* AUTHOR: Duane Wessels
assert(fd == sslState->server.fd);
errno = 0;
#if DELAY_POOLS
- read_sz = delayBytesWanted(sslState->delayId, 1, read_sz);
+ len = delayBytesWanted(sslState->delayId, 1, len);
#endif
/* Bail out early on COMM_ERR_CLOSING - close handlers will tidy up for us */
if (errcode == COMM_ERR_CLOSING) {
/*
- * $Id: tunnel.cc,v 1.126 2002/10/14 08:16:59 robertc Exp $
+ * $Id: tunnel.cc,v 1.127 2002/10/14 08:51:03 robertc Exp $
*
* DEBUG: section 26 Secure Sockets Layer Proxy
* AUTHOR: Duane Wessels
assert(fd == sslState->server.fd);
errno = 0;
#if DELAY_POOLS
- read_sz = delayBytesWanted(sslState->delayId, 1, read_sz);
+ len = delayBytesWanted(sslState->delayId, 1, len);
#endif
/* Bail out early on COMM_ERR_CLOSING - close handlers will tidy up for us */
if (errcode == COMM_ERR_CLOSING) {
/*
- * $Id: wais.cc,v 1.142 2002/10/14 08:16:59 robertc Exp $
+ * $Id: wais.cc,v 1.143 2002/10/14 08:52:23 robertc Exp $
*
* DEBUG: section 24 WAIS Relay
* AUTHOR: Harvest Derived
kb_incr(&statCounter.server.other.kbytes_in, len);
}
#if DELAY_POOLS
- read_sz = delayBytesWanted(delay_id, 1, read_sz);
+ read_sz = delayBytesWanted(delayId, 1, read_sz);
#endif
debug(24, 5) ("waisReadReply: FD %d read len:%d\n", fd, (int)len);
if (flag == COMM_OK && len > 0) {