From 63422dfdcb1cd6827e76440cc147c9eac415952a Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Mon, 8 Jul 2019 15:00:58 +0200 Subject: [HICN-242] Perform only one allocation for the whole buffer passed to produce() Change-Id: Ib4628d0a7711e2d7175b3dbb5c152dd22616ff32 Signed-off-by: Mauro Sardara --- lib/src/compat.c | 2 +- lib/src/compat.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/src/compat.c b/lib/src/compat.c index 63431a384..633037a0f 100644 --- a/lib/src/compat.c +++ b/lib/src/compat.c @@ -1033,7 +1033,7 @@ hicn_data_get_name (hicn_format_t format, const hicn_header_t * data, int hicn_data_set_name (hicn_format_t format, hicn_header_t * data, - hicn_name_t * name) + const hicn_name_t * name) { int ret_err = hicn_packet_set_ece (data); //data packet -> ece flag set if (ret_err < 0) diff --git a/lib/src/compat.h b/lib/src/compat.h index e174414a4..7228843bb 100644 --- a/lib/src/compat.h +++ b/lib/src/compat.h @@ -423,7 +423,7 @@ int hicn_interest_reset_for_hash (hicn_format_t format, int hicn_data_get_name (hicn_format_t format, const hicn_header_t * data, hicn_name_t * name); int hicn_data_set_name (hicn_format_t format, hicn_header_t * data, - hicn_name_t * name); + const hicn_name_t * name); int hicn_data_get_locator (hicn_format_t format, const hicn_header_t * data, ip_address_t * ip_address); int hicn_data_set_locator (hicn_format_t format, hicn_header_t * data, -- cgit 1.2.3-korg