aboutsummaryrefslogtreecommitdiffstats
path: root/hicn-plugin/src/hicn.api
diff options
context:
space:
mode:
authorAlberto Compagno <acompagn+fdio@cisco.com>2019-02-14 12:14:51 +0100
committerAlberto Compagno <acompagn+fdio@cisco.com>2019-02-14 13:05:16 +0100
commitf8c0d76eaff9c256804a4825301af4b9056f77d3 (patch)
tree18bf6b2247eb5e86e034e0b027ff923e6b790226 /hicn-plugin/src/hicn.api
parent2f039d41169b95fa1ee9b1be9fbdc8e899707d25 (diff)
- [HICN-65] Populating hash map of handler and crc in api_main
- Added possibility to start the forwarder from binary api without setting any parameters - Changed pit lifetime values from seconds to milliseconds Change-Id: I83706f22ddd8e825c1021fe70d4bf52e1b929be8 Signed-off-by: Alberto Compagno <acompagn+fdio@cisco.com>
Diffstat (limited to 'hicn-plugin/src/hicn.api')
-rw-r--r--hicn-plugin/src/hicn.api6
1 files changed, 3 insertions, 3 deletions
diff --git a/hicn-plugin/src/hicn.api b/hicn-plugin/src/hicn.api
index e7d7d33c4..a6be15a92 100644
--- a/hicn-plugin/src/hicn.api
+++ b/hicn-plugin/src/hicn.api
@@ -33,13 +33,13 @@ define hicn_api_node_params_set
/* Portion of CS reserved to application, otherwise -1 to assign default value */
i32 cs_reserved_app;
- /* Default PIT entry lifetime */
+ /* Default PIT entry lifetime, otherwise -1 to assign default value */
f64 pit_dflt_lifetime_sec;
- /* Lower bound on PIT entry lifetime */
+ /* Lower bound on PIT entry lifetime, otherwise -1 to assign default value */
f64 pit_min_lifetime_sec;
- /* Upper bound on PIT entry lifetime */
+ /* Upper bound on PIT entry lifetime, otherwise -1 to assign default value */
f64 pit_max_lifetime_sec;
};