From 1a497c8c9ba1b160cfc25e92c1958526cfcb99c2 Mon Sep 17 00:00:00 2001 From: hno <> Date: Sat, 15 Jun 2002 01:31:22 +0000 Subject: [PATCH] Bugzilla #358: Make whois replies cacheable --- src/whois.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/whois.cc b/src/whois.cc index fdd9588582..78b8f6878f 100644 --- a/src/whois.cc +++ b/src/whois.cc @@ -1,6 +1,6 @@ /* - * $Id: whois.cc,v 1.16 2001/04/14 00:03:24 hno Exp $ + * $Id: whois.cc,v 1.17 2002/06/14 19:31:22 hno Exp $ * * DEBUG: section 75 WHOIS protocol * AUTHOR: Duane Wessels, Kostas Anagnostakis @@ -119,6 +119,10 @@ whoisReadReply(int fd, void *data) comm_close(fd); } } else { + storeTimestampsSet(entry); + storeBufferFlush(entry); + if ( !EBIT_TEST(entry->flags, RELEASE_REQUEST ) ) + storeSetPublicKey(entry); fwdComplete(p->fwd); debug(75, 3) ("whoisReadReply: Done: %s\n", storeUrl(entry)); comm_close(fd); -- 2.47.3