aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-light/src/hicn/core/forwarder.c
diff options
context:
space:
mode:
authorJordan Augé <jordan.auge+fdio@cisco.com>2020-09-09 11:59:36 +0200
committerJordan Augé <jordan.auge+fdio@cisco.com>2020-09-21 14:49:29 +0200
commit7356408ca1554468c9d7b9840aaaee28b4341c8d (patch)
treef57bfcc87be4cf5b51b86e5c847b4cde24c0d5e0 /hicn-light/src/hicn/core/forwarder.c
parentfe310f8b7a54f31b7270107b57b5ffcc00966f45 (diff)
[HICN-563] listener and connection tables
Change-Id: I88b85a61908d97bda1afb08d31c3bf10b4d9c5c5 Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'hicn-light/src/hicn/core/forwarder.c')
-rw-r--r--hicn-light/src/hicn/core/forwarder.c4
1 files changed, 2 insertions, 2 deletions
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;