From 1a6cc6e5dc12069c0a9b06a8c59f366535b2f654 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Tue, 26 May 2020 08:46:36 +0200 Subject: [PATCH] fixup lru list presence boolean. --- services/outside_network.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/outside_network.h b/services/outside_network.h index 9290864a6..0230829a8 100644 --- a/services/outside_network.h +++ b/services/outside_network.h @@ -244,6 +244,8 @@ struct reuse_tcp { * TODO */ struct reuse_tcp* next, *prev; + /** true if the reuse_tcp item is on the lru list with empty items */ + int item_on_lru_list; /** the connection to reuse, the fd is non-1 and is open. * the addr and port determine where the connection is going, * and is key to the rbtree. The SSL ptr determines if it is -- 2.47.3