From 7356408ca1554468c9d7b9840aaaee28b4341c8d Mon Sep 17 00:00:00 2001 From: Jordan Augé Date: Wed, 9 Sep 2020 11:59:36 +0200 Subject: [HICN-563] listener and connection tables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I88b85a61908d97bda1afb08d31c3bf10b4d9c5c5 Signed-off-by: Jordan Augé --- hicn-light/src/hicn/core/forwarder.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hicn-light/src/hicn/core/forwarder.c') diff --git a/hicn-light/src/hicn/core/forwarder.c b/hicn-light/src/hicn/core/forwarder.c index 94baade94..9c3df906d 100644 --- a/hicn-light/src/hicn/core/forwarder.c +++ b/hicn-light/src/hicn/core/forwarder.c @@ -224,8 +224,8 @@ forwarder_create() size_t objectStoreSize = configuration_content_store_get_size(forwarder_get_configuration(forwarder)); - forwarder->content_store = content_store_create(CONTENT_STORE_TYPE_LRU, - objectStoreSize); + forwarder->content_store = _content_store_create(CONTENT_STORE_TYPE_LRU, + objectStoreSize, 0); if (!forwarder->content_store) goto ERR_CONTENT_STORE; -- cgit 1.2.3-korg